19 lines
379 B
Terraform
19 lines
379 B
Terraform
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
|
|
}
|
|
}
|