Terraform 0.12 (#20)

* Terraform 0.12
This commit is contained in:
Edward Viaene
2019-10-06 13:46:10 +02:00
committed by GitHub
parent 9e31795a58
commit 5d9eeb6c4c
201 changed files with 2528 additions and 2006 deletions
+3 -2
View File
@@ -1,5 +1,5 @@
resource "aws_security_group" "allow-ssh" {
vpc_id = "${module.vpc.vpc_id}"
vpc_id = module.vpc.vpc_id
name = "allow-ssh"
description = "security group that allows ssh and all egress traffic"
@@ -17,7 +17,8 @@ resource "aws_security_group" "allow-ssh" {
cidr_blocks = ["0.0.0.0/0"]
}
tags {
tags = {
Name = "allow-ssh"
}
}