terraform-tofu-labs/3-remote-states/iac/variables.tf
2024-04-15 23:33:12 +01:00

46 lines
976 B
HCL

variable "name" {
description = "Solution name"
type = string
default = "my-vpc"
}
variable "environment" {
description = "Execution environment"
type = string
default = "development"
}
variable "region" {
description = "AWS region"
type = string
default = "eu-west-1"
}
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 = {}
}
variable "ami_id" {
description = "ami to use for example"
type = string
}