Skip to content

Commit 157dd85

Browse files
authored
ramiray/c04-iac03 (#1338)
* ramiray/c04-iac03 * adding markdown as per ANSWER.md
1 parent b269aa4 commit 157dd85

File tree

1 file changed

+362
-0
lines changed
  • classes/04class/exercises/c04-iac03/ramiray

1 file changed

+362
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,362 @@
1+
C04-IAC03
2+
Terraform plan output
3+
4+
```
5+
terraform plan -var-file="main.tfvars"
6+
Refreshing Terraform state in-memory prior to plan...
7+
The refreshed state will be used to calculate this plan, but will not be
8+
persisted to local or remote state storage.
9+
10+
aws_eip.nat[0]: Refreshing state... [id=eipalloc-0136cf297f583dec4]
11+
aws_subnet.public[0]: Refreshing state... [id=subnet-04ef74673aa7debd8]
12+
aws_subnet.public[1]: Refreshing state... [id=subnet-00f924800d4f5ddc5]
13+
aws_eip.nat[1]: Refreshing state... [id=eipalloc-0d9d62d9bed86578e]
14+
aws_vpc.da_iac02_vpc: Refreshing state... [id=vpc-095a4ba6da1dfd727]
15+
aws_subnet.private[1]: Refreshing state... [id=subnet-0ba062b9607bd6775]
16+
aws_subnet.private[0]: Refreshing state... [id=subnet-05c33af87974e3619]
17+
aws_route_table.private[0]: Refreshing state... [id=rtb-0697ec1580658f0df]
18+
aws_internet_gateway.da_iac02_igw: Refreshing state... [id=igw-05674b4385ac18a67]
19+
aws_route_table.private[1]: Refreshing state... [id=rtb-0c66ce35bd1b8468b]
20+
aws_route_table.public: Refreshing state... [id=rtb-02df7592db8ecaebf]
21+
aws_nat_gateway.iac02nat[1]: Refreshing state... [id=nat-0ec94965e344aa426]
22+
aws_route.public: Refreshing state... [id=r-rtb-02df7592db8ecaebf1080289494]
23+
aws_nat_gateway.iac02nat[0]: Refreshing state... [id=nat-01535a3c31e4899aa]
24+
aws_route_table_association.public[1]: Refreshing state... [id=rtbassoc-0e3fb78c8e7d70c9b]
25+
aws_route_table_association.private[1]: Refreshing state... [id=rtbassoc-03fdfb58db0037657]
26+
aws_route_table_association.private[0]: Refreshing state... [id=rtbassoc-031f6bccd0eb4dc16]
27+
aws_route_table_association.public[0]: Refreshing state... [id=rtbassoc-0bbea73fd247fd37a]
28+
aws_route.private[1]: Refreshing state... [id=r-rtb-0c66ce35bd1b8468b1080289494]
29+
aws_route.private[0]: Refreshing state... [id=r-rtb-0697ec1580658f0df1080289494]
30+
31+
------------------------------------------------------------------------
32+
33+
An execution plan has been generated and is shown below.
34+
Resource actions are indicated with the following symbols:
35+
+ create
36+
~ update in-place
37+
- destroy
38+
-/+ destroy and then create replacement
39+
40+
Terraform will perform the following actions:
41+
42+
# aws_internet_gateway.da_iac02_igw will be updated in-place
43+
~ resource "aws_internet_gateway" "da_iac02_igw" {
44+
arn = "arn:aws:ec2:ap-southeast-2:348662207501:internet-gateway/igw-05674b4385ac18a67"
45+
id = "igw-05674b4385ac18a67"
46+
owner_id = "348662207501"
47+
tags = {
48+
"Name" = "gwInternet"
49+
}
50+
~ vpc_id = "vpc-095a4ba6da1dfd727" -> (known after apply)
51+
}
52+
53+
# aws_nat_gateway.iac02nat[0] must be replaced
54+
-/+ resource "aws_nat_gateway" "iac02nat" {
55+
allocation_id = "eipalloc-0136cf297f583dec4"
56+
~ id = "nat-01535a3c31e4899aa" -> (known after apply)
57+
~ network_interface_id = "eni-099ebd2c95599e2fe" -> (known after apply)
58+
~ private_ip = "10.0.0.155" -> (known after apply)
59+
~ public_ip = "54.66.103.148" -> (known after apply)
60+
~ subnet_id = "subnet-04ef74673aa7debd8" -> (known after apply) # forces replacement
61+
tags = {
62+
"Name" = "iac02nat"
63+
}
64+
}
65+
66+
# aws_nat_gateway.iac02nat[1] must be replaced
67+
-/+ resource "aws_nat_gateway" "iac02nat" {
68+
allocation_id = "eipalloc-0d9d62d9bed86578e"
69+
~ id = "nat-0ec94965e344aa426" -> (known after apply)
70+
~ network_interface_id = "eni-0465cea5155db1291" -> (known after apply)
71+
~ private_ip = "10.0.2.198" -> (known after apply)
72+
~ public_ip = "3.24.3.64" -> (known after apply)
73+
~ subnet_id = "subnet-00f924800d4f5ddc5" -> (known after apply) # forces replacement
74+
tags = {
75+
"Name" = "iac02nat"
76+
}
77+
}
78+
79+
# aws_route.private[0] must be replaced
80+
-/+ resource "aws_route" "private" {
81+
destination_cidr_block = "0.0.0.0/0"
82+
+ destination_prefix_list_id = (known after apply)
83+
+ egress_only_gateway_id = (known after apply)
84+
+ gateway_id = (known after apply)
85+
~ id = "r-rtb-0697ec1580658f0df1080289494" -> (known after apply)
86+
+ instance_id = (known after apply)
87+
+ instance_owner_id = (known after apply)
88+
~ nat_gateway_id = "nat-01535a3c31e4899aa" -> (known after apply)
89+
+ network_interface_id = (known after apply)
90+
~ origin = "CreateRoute" -> (known after apply)
91+
~ route_table_id = "rtb-0697ec1580658f0df" -> (known after apply) # forces replacement
92+
~ state = "active" -> (known after apply)
93+
}
94+
95+
# aws_route.private[1] must be replaced
96+
-/+ resource "aws_route" "private" {
97+
destination_cidr_block = "0.0.0.0/0"
98+
+ destination_prefix_list_id = (known after apply)
99+
+ egress_only_gateway_id = (known after apply)
100+
+ gateway_id = (known after apply)
101+
~ id = "r-rtb-0c66ce35bd1b8468b1080289494" -> (known after apply)
102+
+ instance_id = (known after apply)
103+
+ instance_owner_id = (known after apply)
104+
~ nat_gateway_id = "nat-0ec94965e344aa426" -> (known after apply)
105+
+ network_interface_id = (known after apply)
106+
~ origin = "CreateRoute" -> (known after apply)
107+
~ route_table_id = "rtb-0c66ce35bd1b8468b" -> (known after apply) # forces replacement
108+
~ state = "active" -> (known after apply)
109+
}
110+
111+
# aws_route.public must be replaced
112+
-/+ resource "aws_route" "public" {
113+
destination_cidr_block = "0.0.0.0/0"
114+
+ destination_prefix_list_id = (known after apply)
115+
+ egress_only_gateway_id = (known after apply)
116+
gateway_id = "igw-05674b4385ac18a67"
117+
~ id = "r-rtb-02df7592db8ecaebf1080289494" -> (known after apply)
118+
+ instance_id = (known after apply)
119+
+ instance_owner_id = (known after apply)
120+
+ nat_gateway_id = (known after apply)
121+
+ network_interface_id = (known after apply)
122+
~ origin = "CreateRoute" -> (known after apply)
123+
~ route_table_id = "rtb-02df7592db8ecaebf" -> (known after apply) # forces replacement
124+
~ state = "active" -> (known after apply)
125+
}
126+
127+
# aws_route_table.private[0] must be replaced
128+
-/+ resource "aws_route_table" "private" {
129+
~ id = "rtb-0697ec1580658f0df" -> (known after apply)
130+
~ owner_id = "348662207501" -> (known after apply)
131+
~ propagating_vgws = [] -> (known after apply)
132+
~ route = [
133+
- {
134+
- cidr_block = "0.0.0.0/0"
135+
- egress_only_gateway_id = ""
136+
- gateway_id = ""
137+
- instance_id = ""
138+
- ipv6_cidr_block = ""
139+
- nat_gateway_id = "nat-01535a3c31e4899aa"
140+
- network_interface_id = ""
141+
- transit_gateway_id = ""
142+
- vpc_peering_connection_id = ""
143+
},
144+
] -> (known after apply)
145+
tags = {
146+
"Name" = "PrivateRouteTable"
147+
}
148+
~ vpc_id = "vpc-095a4ba6da1dfd727" -> (known after apply) # forces replacement
149+
}
150+
151+
# aws_route_table.private[1] must be replaced
152+
-/+ resource "aws_route_table" "private" {
153+
~ id = "rtb-0c66ce35bd1b8468b" -> (known after apply)
154+
~ owner_id = "348662207501" -> (known after apply)
155+
~ propagating_vgws = [] -> (known after apply)
156+
~ route = [
157+
- {
158+
- cidr_block = "0.0.0.0/0"
159+
- egress_only_gateway_id = ""
160+
- gateway_id = ""
161+
- instance_id = ""
162+
- ipv6_cidr_block = ""
163+
- nat_gateway_id = "nat-0ec94965e344aa426"
164+
- network_interface_id = ""
165+
- transit_gateway_id = ""
166+
- vpc_peering_connection_id = ""
167+
},
168+
] -> (known after apply)
169+
tags = {
170+
"Name" = "PrivateRouteTable"
171+
}
172+
~ vpc_id = "vpc-095a4ba6da1dfd727" -> (known after apply) # forces replacement
173+
}
174+
175+
# aws_route_table.public must be replaced
176+
-/+ resource "aws_route_table" "public" {
177+
~ id = "rtb-02df7592db8ecaebf" -> (known after apply)
178+
~ owner_id = "348662207501" -> (known after apply)
179+
~ propagating_vgws = [] -> (known after apply)
180+
~ route = [
181+
- {
182+
- cidr_block = "0.0.0.0/0"
183+
- egress_only_gateway_id = ""
184+
- gateway_id = "igw-05674b4385ac18a67"
185+
- instance_id = ""
186+
- ipv6_cidr_block = ""
187+
- nat_gateway_id = ""
188+
- network_interface_id = ""
189+
- transit_gateway_id = ""
190+
- vpc_peering_connection_id = ""
191+
},
192+
] -> (known after apply)
193+
tags = {
194+
"Name" = "PublicRouteTable"
195+
}
196+
~ vpc_id = "vpc-095a4ba6da1dfd727" -> (known after apply) # forces replacement
197+
}
198+
199+
# aws_route_table_association.private[0] must be replaced
200+
-/+ resource "aws_route_table_association" "private" {
201+
~ id = "rtbassoc-031f6bccd0eb4dc16" -> (known after apply)
202+
~ route_table_id = "rtb-0697ec1580658f0df" -> (known after apply)
203+
~ subnet_id = "subnet-05c33af87974e3619" -> (known after apply) # forces replacement
204+
}
205+
206+
# aws_route_table_association.private[1] must be replaced
207+
-/+ resource "aws_route_table_association" "private" {
208+
~ id = "rtbassoc-03fdfb58db0037657" -> (known after apply)
209+
~ route_table_id = "rtb-0c66ce35bd1b8468b" -> (known after apply)
210+
~ subnet_id = "subnet-0ba062b9607bd6775" -> (known after apply) # forces replacement
211+
}
212+
213+
# aws_route_table_association.public[0] must be replaced
214+
-/+ resource "aws_route_table_association" "public" {
215+
~ id = "rtbassoc-0bbea73fd247fd37a" -> (known after apply)
216+
~ route_table_id = "rtb-02df7592db8ecaebf" -> (known after apply)
217+
~ subnet_id = "subnet-04ef74673aa7debd8" -> (known after apply) # forces replacement
218+
}
219+
220+
# aws_route_table_association.public[1] must be replaced
221+
-/+ resource "aws_route_table_association" "public" {
222+
~ id = "rtbassoc-0e3fb78c8e7d70c9b" -> (known after apply)
223+
~ route_table_id = "rtb-02df7592db8ecaebf" -> (known after apply)
224+
~ subnet_id = "subnet-00f924800d4f5ddc5" -> (known after apply) # forces replacement
225+
}
226+
227+
# aws_subnet.private[0] must be replaced
228+
-/+ resource "aws_subnet" "private" {
229+
~ arn = "arn:aws:ec2:ap-southeast-2:348662207501:subnet/subnet-05c33af87974e3619" -> (known after apply)
230+
assign_ipv6_address_on_creation = false
231+
availability_zone = "ap-southeast-2a"
232+
~ availability_zone_id = "apse2-az1" -> (known after apply)
233+
~ cidr_block = "10.0.3.0/24" -> "10.0.56.0/24" # forces replacement
234+
~ id = "subnet-05c33af87974e3619" -> (known after apply)
235+
+ ipv6_cidr_block = (known after apply)
236+
+ ipv6_cidr_block_association_id = (known after apply)
237+
map_public_ip_on_launch = false
238+
~ owner_id = "348662207501" -> (known after apply)
239+
tags = {
240+
"Name" = "PrivateSubnet"
241+
}
242+
~ vpc_id = "vpc-095a4ba6da1dfd727" -> (known after apply) # forces replacement
243+
}
244+
245+
# aws_subnet.private[1] must be replaced
246+
-/+ resource "aws_subnet" "private" {
247+
~ arn = "arn:aws:ec2:ap-southeast-2:348662207501:subnet/subnet-0ba062b9607bd6775" -> (known after apply)
248+
assign_ipv6_address_on_creation = false
249+
availability_zone = "ap-southeast-2b"
250+
~ availability_zone_id = "apse2-az3" -> (known after apply)
251+
~ cidr_block = "10.0.4.0/24" -> "10.0.57.0/24" # forces replacement
252+
~ id = "subnet-0ba062b9607bd6775" -> (known after apply)
253+
+ ipv6_cidr_block = (known after apply)
254+
+ ipv6_cidr_block_association_id = (known after apply)
255+
map_public_ip_on_launch = false
256+
~ owner_id = "348662207501" -> (known after apply)
257+
tags = {
258+
"Name" = "PrivateSubnet"
259+
}
260+
~ vpc_id = "vpc-095a4ba6da1dfd727" -> (known after apply) # forces replacement
261+
}
262+
263+
# aws_subnet.public[0] will be destroyed
264+
- resource "aws_subnet" "public" {
265+
- arn = "arn:aws:ec2:ap-southeast-2:348662207501:subnet/subnet-04ef74673aa7debd8" -> null
266+
- assign_ipv6_address_on_creation = false -> null
267+
- availability_zone = "ap-southeast-2a" -> null
268+
- availability_zone_id = "apse2-az1" -> null
269+
- cidr_block = "10.0.0.0/24" -> null
270+
- id = "subnet-04ef74673aa7debd8" -> null
271+
- map_public_ip_on_launch = true -> null
272+
- owner_id = "348662207501" -> null
273+
- tags = {
274+
- "Name" = "PublicSubnet"
275+
} -> null
276+
- vpc_id = "vpc-095a4ba6da1dfd727" -> null
277+
}
278+
279+
# aws_subnet.public[1] will be destroyed
280+
- resource "aws_subnet" "public" {
281+
- arn = "arn:aws:ec2:ap-southeast-2:348662207501:subnet/subnet-00f924800d4f5ddc5" -> null
282+
- assign_ipv6_address_on_creation = false -> null
283+
- availability_zone = "ap-southeast-2b" -> null
284+
- availability_zone_id = "apse2-az3" -> null
285+
- cidr_block = "10.0.2.0/24" -> null
286+
- id = "subnet-00f924800d4f5ddc5" -> null
287+
- map_public_ip_on_launch = true -> null
288+
- owner_id = "348662207501" -> null
289+
- tags = {
290+
- "Name" = "PublicSubnet"
291+
} -> null
292+
- vpc_id = "vpc-095a4ba6da1dfd727" -> null
293+
}
294+
295+
# aws_subnet.publiciac03[0] will be created
296+
+ resource "aws_subnet" "publiciac03" {
297+
+ arn = (known after apply)
298+
+ assign_ipv6_address_on_creation = false
299+
+ availability_zone = "ap-southeast-2a"
300+
+ availability_zone_id = (known after apply)
301+
+ cidr_block = "10.0.0.0/24"
302+
+ id = (known after apply)
303+
+ ipv6_cidr_block = (known after apply)
304+
+ ipv6_cidr_block_association_id = (known after apply)
305+
+ map_public_ip_on_launch = true
306+
+ owner_id = (known after apply)
307+
+ tags = {
308+
+ "Name" = "Publiciac03"
309+
}
310+
+ vpc_id = (known after apply)
311+
}
312+
313+
# aws_subnet.publiciac03[1] will be created
314+
+ resource "aws_subnet" "publiciac03" {
315+
+ arn = (known after apply)
316+
+ assign_ipv6_address_on_creation = false
317+
+ availability_zone = "ap-southeast-2b"
318+
+ availability_zone_id = (known after apply)
319+
+ cidr_block = "10.0.2.0/24"
320+
+ id = (known after apply)
321+
+ ipv6_cidr_block = (known after apply)
322+
+ ipv6_cidr_block_association_id = (known after apply)
323+
+ map_public_ip_on_launch = true
324+
+ owner_id = (known after apply)
325+
+ tags = {
326+
+ "Name" = "Publiciac03"
327+
}
328+
+ vpc_id = (known after apply)
329+
}
330+
331+
# aws_vpc.da_iac02_vpc must be replaced
332+
-/+ resource "aws_vpc" "da_iac02_vpc" {
333+
~ arn = "arn:aws:ec2:ap-southeast-2:348662207501:vpc/vpc-095a4ba6da1dfd727" -> (known after apply)
334+
~ cidr_block = "10.0.0.0/16" -> "10.0.0.0/17" # forces replacement
335+
~ default_network_acl_id = "acl-0d24d0fd7f79516a5" -> (known after apply)
336+
~ default_route_table_id = "rtb-000c580041acbdb0c" -> (known after apply)
337+
~ default_security_group_id = "sg-0277723ff50b06196" -> (known after apply)
338+
~ dhcp_options_id = "dopt-1ff7df78" -> (known after apply)
339+
~ enable_classiclink = false -> (known after apply)
340+
~ enable_classiclink_dns_support = false -> (known after apply)
341+
enable_dns_hostnames = true
342+
enable_dns_support = true
343+
~ id = "vpc-095a4ba6da1dfd727" -> (known after apply)
344+
instance_tenancy = "default"
345+
+ ipv6_association_id = (known after apply)
346+
+ ipv6_cidr_block = (known after apply)
347+
~ main_route_table_id = "rtb-000c580041acbdb0c" -> (known after apply)
348+
~ owner_id = "348662207501" -> (known after apply)
349+
tags = {
350+
"Name" = "da_iac02_vpc"
351+
}
352+
}
353+
354+
Plan: 17 to add, 1 to change, 17 to destroy.
355+
356+
------------------------------------------------------------------------
357+
358+
Note: You didn't specify an "-out" parameter to save this plan, so Terraform
359+
can't guarantee that exactly these actions will be performed if
360+
"terraform apply" is subsequently run.
361+
362+
```

0 commit comments

Comments
 (0)