terraform-tofu-labs/1-getting-started/code/variables.tf

37 lines
798 B
Terraform
Raw Normal View History

2024-04-16 14:23:10 +00:00
variable "name" {
description = "Name of our Application"
type = string
default = "lab-1-app"
}
variable "environment" {
description = "The deployment environment"
type = string
default = "dev"
}
2024-04-16 14:28:54 +00:00
variable "private_subnet_suffix" {
description = "Suffix to append to private subnets name"
type = string
default = "private-"
}
variable "public_subnet_suffix" {
description = "Suffix to append to public subnets name"
type = string
default = "public-"
}
variable "database_subnet_suffix" {
description = "Suffix to append to database subnets name"
type = string
default = "rds-"
}
variable "additional_tags" {
description = "Additional default resource tags"
type = map(string)
default = {}
}