About 初回に立てた時はSGが1つだったが、あとからSGを追加したくなったときどうなるか試した結果です。 バージョン terraform v0.6.11 テスト環境の準備 とりあえず雑に作りました。 resource "aws_instance" "test" { ami = "ami-b80b6db8" instance_type = "t2.micro" key_name = "${var.key_name}" # Our Security group to allow SSH access security_groups = ["${aws_security_group.test.name}"] root_block_device { delete_on_termination = "true" volume_size = "8" } tags { Name = "test" P