NEW: sharing transit gateway via RAM

This commit is contained in:
xpk
2020-11-06 18:53:20 +08:00
parent 2588e761b3
commit 90e6acc97d
12 changed files with 227 additions and 0 deletions
@@ -0,0 +1,18 @@
variable "aws_access_key" {}
variable "aws_secret_key" {}
variable aws-region {}
variable owner {}
variable project {}
variable environment {}
variable application {}
variable terraformmode {}
locals {
default-tags = {
terraform = var.terraformmode
environment = var.environment
project = var.project
application = var.application
}
}