(MODE-11365) Added tileserver-alb deployment files for dev and prod.
This commit is contained in:
parent
0a75cc192a
commit
332a668f6c
4 changed files with 64 additions and 2 deletions
32
deployment/eu-central-1/dev/tileserver-alb/terraform.tfvars
Normal file
32
deployment/eu-central-1/dev/tileserver-alb/terraform.tfvars
Normal 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"
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../../../modules/tileserver
|
|
||||||
32
deployment/eu-central-1/prod/tileserver-alb/terraform.tfvars
Normal file
32
deployment/eu-central-1/prod/tileserver-alb/terraform.tfvars
Normal 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"
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
../../../modules/tileserver
|
|
||||||
Loading…
Reference in a new issue