1414
1515 to list the Availability Zones that are enabled for your
1616 AWS account. Enter your selection from this list using the
17- TERRAFORM_AWS_AV_REGION menu.
17+ TERRAFORM_AWS_AV_ZONE menu.
1818
1919 If you wish to expand on the region list, send a patch after
2020 reading this list:
@@ -90,38 +90,38 @@ config TERRAFORM_AWS_REGION
9090if TERRAFORM_AWS_REGION_US_EAST_1
9191
9292choice
93- prompt "AWS East 1 availability zone to use "
94- default TERRAFORM_AWS_AV_REGION_EAST_1A
93+ prompt "AWS availability zone"
94+ default TERRAFORM_AWS_AV_ZONE_US_EAST_1A
9595
96- config TERRAFORM_AWS_AV_REGION_EAST_1A
96+ config TERRAFORM_AWS_AV_ZONE_US_EAST_1A
9797 bool "us-east-1a"
9898 help
99- This option selects us-east-1a availability zone.
99+ This option selects the us-east-1a availability zone.
100100
101- config TERRAFORM_AWS_AV_REGION_EAST_1B
101+ config TERRAFORM_AWS_AV_ZONE_US_EAST_1B
102102 bool "us-east-1b"
103103 help
104- This option selects us-east-1b availability zone.
104+ This option selects the us-east-1b availability zone.
105105
106- config TERRAFORM_AWS_AV_REGION_EAST_1C
106+ config TERRAFORM_AWS_AV_ZONE_US_EAST_1C
107107 bool "us-east-1c"
108108 help
109- This option selects us-east-1c availability zone.
109+ This option selects the us-east-1c availability zone.
110110
111- config TERRAFORM_AWS_AV_REGION_EAST_1D
111+ config TERRAFORM_AWS_AV_ZONE_US_EAST_1D
112112 bool "us-east-1d"
113113 help
114- This option selects us-east-1d availability zone.
114+ This option selects the us-east-1d availability zone.
115115
116- config TERRAFORM_AWS_AV_REGION_EAST_1E
116+ config TERRAFORM_AWS_AV_ZONE_US_EAST_1E
117117 bool "us-east-1e"
118118 help
119- This option selects us-east-1e availability zone.
119+ This option selects the us-east-1e availability zone.
120120
121- config TERRAFORM_AWS_AV_REGION_EAST_1F
121+ config TERRAFORM_AWS_AV_ZONE_US_EAST_1F
122122 bool "us-east-1f"
123123 help
124- This option selects us-east-1f availability zone.
124+ This option selects the us-east-1f availability zone.
125125
126126endchoice
127127
@@ -130,23 +130,23 @@ endif # TERRAFORM_AWS_REGION_US_EAST_1
130130if TERRAFORM_AWS_REGION_US_EAST_2
131131
132132choice
133- prompt "AWS East 2 availability zone to use "
134- default TERRAFORM_AWS_AV_REGION_EAST_2A
133+ prompt "AWS availability zone"
134+ default TERRAFORM_AWS_AV_ZONE_US_EAST_2A
135135
136- config TERRAFORM_AWS_AV_REGION_EAST_2A
136+ config TERRAFORM_AWS_AV_ZONE_US_EAST_2A
137137 bool "us-east-2a"
138138 help
139- This option selects us-east-2a availability zone.
139+ This option selects the us-east-2a availability zone.
140140
141- config TERRAFORM_AWS_AV_REGION_EAST_2B
141+ config TERRAFORM_AWS_AV_ZONE_US_EAST_2B
142142 bool "us-east-2b"
143143 help
144- This option selects us-east-2a availability zone.
144+ This option selects the us-east-2a availability zone.
145145
146- config TERRAFORM_AWS_AV_REGION_EAST_2C
146+ config TERRAFORM_AWS_AV_ZONE_US_EAST_2C
147147 bool "us-east-2c"
148148 help
149- This option selects us-east-2c availability zone.
149+ This option selects the us-east-2c availability zone.
150150
151151endchoice
152152
@@ -155,47 +155,47 @@ endif # TERRAFORM_AWS_REGION_US_EAST_2
155155if TERRAFORM_AWS_REGION_US_WEST_2
156156
157157choice
158- prompt "AWS West 2 AV region to use"
159- default TERRAFORM_AWS_AV_REGION_WEST_2B
160-
161- config TERRAFORM_AWS_AV_REGION_WEST_1B
162- bool "us-west-1b"
158+ prompt "AWS availability zone"
159+ default TERRAFORM_AWS_AV_ZONE_US_WEST_2B
163160 help
164- This option will set the AWS AV region to us-west-1b.
165- This option will set the AWS availablity region to the specified
166- value.
167-
161+ This option sets the AWS availablity zone to the specified value.
168162 If you wish to expand on this list send a patch after reading this
169163 list:
170164
171165 https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html
172166 https://gist.github.com/neilstuartcraig/0ccefcf0887f29b7f240
173167
174- config TERRAFORM_AWS_AV_REGION_WEST_2B
168+ config TERRAFORM_AWS_AV_ZONE_US_WEST_1B
169+ bool "us-west-1b"
170+ help
171+ This option selects the us-west-1b availability zone.
172+
173+ config TERRAFORM_AWS_AV_ZONE_US_WEST_2B
175174 bool "us-west-2b"
176175 help
177- This option will set the AWS AV region to us-west-2b.
176+ This option selects the us-west-2b availability zone .
178177
179- config TERRAFORM_AWS_AV_REGION_WEST_2D
178+ config TERRAFORM_AWS_AV_ZONE_US_WEST_2D
180179 bool "us-west-2d"
181180 help
182- This option will set the AWS AV region to us-west-2d.
181+ This option selects the us-west-2d availability zone .
183182
184183endchoice
185184
186185endif # TERRAFORM_AWS_REGION_US_WEST_2
187186
188- config TERRAFORM_AWS_AV_REGION
187+ config TERRAFORM_AWS_AV_ZONE
189188 string
190- default "us-west-1b" if TERRAFORM_AWS_AV_REGION_WEST_1B
191- default "us-west-2b" if TERRAFORM_AWS_AV_REGION_WEST_2B
192- default "us-west-2d" if TERRAFORM_AWS_AV_REGION_WEST_2D
193- default "us-east-1a" if TERRAFORM_AWS_AV_REGION_EAST_1A
194- default "us-east-1b" if TERRAFORM_AWS_AV_REGION_EAST_1B
195- default "us-east-1c" if TERRAFORM_AWS_AV_REGION_EAST_1C
196- default "us-east-1d" if TERRAFORM_AWS_AV_REGION_EAST_1D
197- default "us-east-1e" if TERRAFORM_AWS_AV_REGION_EAST_1E
198- default "us-east-1f" if TERRAFORM_AWS_AV_REGION_EAST_1F
199- default "us-east-2a" if TERRAFORM_AWS_AV_REGION_EAST_2A
200- default "us-east-2b" if TERRAFORM_AWS_AV_REGION_EAST_2B
201- default "us-east-2c" if TERRAFORM_AWS_AV_REGION_EAST_2C
189+ output yaml
190+ default "us-east-1a" if TERRAFORM_AWS_AV_ZONE_US_EAST_1A
191+ default "us-east-1b" if TERRAFORM_AWS_AV_ZONE_US_EAST_1B
192+ default "us-east-1c" if TERRAFORM_AWS_AV_ZONE_US_EAST_1C
193+ default "us-east-1d" if TERRAFORM_AWS_AV_ZONE_US_EAST_1D
194+ default "us-east-1e" if TERRAFORM_AWS_AV_ZONE_US_EAST_1E
195+ default "us-east-1f" if TERRAFORM_AWS_AV_ZONE_US_EAST_1F
196+ default "us-east-2a" if TERRAFORM_AWS_AV_ZONE_US_EAST_2A
197+ default "us-east-2b" if TERRAFORM_AWS_AV_ZONE_US_EAST_2B
198+ default "us-east-2c" if TERRAFORM_AWS_AV_ZONE_US_EAST_2C
199+ default "us-west-1b" if TERRAFORM_AWS_AV_ZONE_US_WEST_1B
200+ default "us-west-2b" if TERRAFORM_AWS_AV_ZONE_US_WEST_2B
201+ default "us-west-2d" if TERRAFORM_AWS_AV_ZONE_US_WEST_2D
0 commit comments