(MODE-11365) Added tileserver-alb deployment files for dev and prod.

This commit is contained in:
siozosdr 2019-06-24 15:52:41 +02:00
parent 0a75cc192a
commit 332a668f6c
4 changed files with 64 additions and 2 deletions

View file

@ -0,0 +1,32 @@
terragrunt = {
include {
path = "${find_in_parent_folders()}"
}
terraform {
source = "git::ssh://git@github.com/monosolutions/terraform-modules.git//mono-alb"
}
}
region = "eu-central-1"
environment = "dev"
alb_name = "tileserver-alb"
alb_subnets = []
ingress = [
{
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = "0.0.0.0/0"
}
]
ingress_count = 1
egress = [
{
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = "0.0.0.0/0"
}
]
egress_count = 1
vpc_remote_state = "dev/vpc/terraform.tfstate"
state_bucket = "tg-state-eu-central-1"

View file

@ -1 +0,0 @@
../../../modules/tileserver

View file

@ -0,0 +1,32 @@
terragrunt = {
include {
path = "${find_in_parent_folders()}"
}
terraform {
source = "git::ssh://git@github.com/monosolutions/terraform-modules.git//mono-alb"
}
}
region = "eu-central-1"
environment = "prod"
alb_name = "tileserver-alb"
alb_subnets = []
ingress = [
{
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = "0.0.0.0/0"
}
]
ingress_count = 1
egress = [
{
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = "0.0.0.0/0"
}
]
egress_count = 1
vpc_remote_state = "prod/vpc/terraform.tfstate"
state_bucket = "tg-state-eu-central-1"

View file

@ -1 +0,0 @@
../../../modules/tileserver