19 lines
		
	
	
		
			569 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			569 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
# Application definition
 | 
						|
app_name        = "microshift" # Don't enter any spaces
 | 
						|
app_environment = "dev"        # Dev, Test, Staging, Prod, etc
 | 
						|
 | 
						|
# Network ranges
 | 
						|
vpc_cidr           = "10.11.0.0/16"
 | 
						|
public_subnet_cidr = "10.11.1.0/24"
 | 
						|
 | 
						|
# Aws region to deploy into
 | 
						|
aws_region = "ap-southeast-2"
 | 
						|
 | 
						|
# Linux server variables
 | 
						|
linux_instance_type               = "t2.large"
 | 
						|
linux_associate_public_ip_address = true
 | 
						|
linux_root_volume_size            = 20
 | 
						|
linux_root_volume_type            = "gp2"
 | 
						|
linux_data_volume_size            = 10
 | 
						|
linux_data_volume_type            = "gp2"
 |