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
+1
View File
@@ -1,3 +1,4 @@
resource "aws_ecr_repository" "myapp" {
name = "myapp"
}
+2 -1
View File
@@ -1,3 +1,4 @@
output "myapp-repository-URL" {
value = "${aws_ecr_repository.myapp.repository_url}"
value = aws_ecr_repository.myapp.repository_url
}
+1 -1
View File
@@ -1,4 +1,4 @@
provider "aws" {
region = "${var.AWS_REGION}"
region = var.AWS_REGION
}
+1
View File
@@ -1,3 +1,4 @@
variable "AWS_REGION" {
default = "eu-west-1"
}
+4
View File
@@ -0,0 +1,4 @@
terraform {
required_version = ">= 0.12"
}