docker-demo-1

This commit is contained in:
Edward Viaene
2016-10-25 17:05:18 +00:00
parent 3401811e77
commit d32475746d
4 changed files with 13 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
resource "aws_ecr_repository" "myapp" {
name = "myapp"
}
+3
View File
@@ -0,0 +1,3 @@
output "myapp-repository-URL" {
value = "${aws_ecr_repository.myapp.repository_url}"
}
+4
View File
@@ -0,0 +1,4 @@
provider "aws" {
region = "${var.AWS_REGION}"
}
+3
View File
@@ -0,0 +1,3 @@
variable "AWS_REGION" {
default = "eu-west-1"
}