Multi ENV deploy working on dev and prod

This commit is contained in:
2024-05-25 15:03:17 +02:00
parent 5eda24ef8f
commit 499a4f8480
12 changed files with 4707 additions and 33 deletions

9
variable.tf Normal file
View File

@@ -0,0 +1,9 @@
variable "region" {
type = string
default = "eu-west-1"
}
variable "env" {
type = string
default = "dev"
}