Slide 8
Slide 8 text
リソースをできるだけ分ける/差分を取ってみる 8
Terraform will perform the following actions:
# aws_security_group.all will be updated in-place
~ resource "aws_security_group" "web_app" {
id = "sg-xxxxxxxxxxxxxxxxxxxx"
~ ingress = [
- {
- cidr_blocks = [
- "0.0.0.0/0",
]
- from_port = 0
- ipv6_cidr_blocks = []
- prefix_list_ids = []
- protocol = "-1"
- security_groups = []
- self = false
- to_port = 0
# (1 unchanged attribute hidden)
},
+ {
+ cidr_blocks = [
+ "0.0.0.0/0",
]
+ from_port = 0
+ ipv6_cidr_blocks = []
+ prefix_list_ids = []
+ protocol = "-1"
+ security_groups = []
+ self = false
+ to_port = 0
},
…
…
+ {
+ cidr_blocks = [
+ "1.1.1.1/32",
]
+ from_port = 80
+ ipv6_cidr_blocks = []
+ prefix_list_ids = []
+ protocol = "tcp"
+ security_groups = []
+ self = false
+ to_port = 80
# (1 unchanged attribute hidden)
},
]
name = "web-app"
# (8 unchanged attributes hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
ingressルールを全て削除
して全て再作成するような
差分となる