github.com/jrasell/terraform@v0.6.17-0.20160523115548-2652f5232949/examples/aws-rds/subnet-variables.tf (about) 1 variable "subnet_1_cidr" { 2 default = "10.0.1.0/24" 3 description = "Your AZ" 4 } 5 6 variable "subnet_2_cidr" { 7 default = "10.0.2.0/24" 8 description = "Your AZ" 9 } 10 11 variable "az_1" { 12 default = "us-east-1b" 13 description = "Your Az1, use AWS CLI to find your account specific" 14 } 15 16 variable "az_2" { 17 default = "us-east-1c" 18 description = "Your Az2, use AWS CLI to find your account specific" 19 } 20 21 variable "vpc_id" { 22 description = "Your VPC ID" 23 } 24