Files
aws-localstack/environments/prd/variables.tf
T

18 lines
424 B
Terraform

variable "aws_region" {
description = "Simulated AWS region in LocalStack."
type = string
default = "us-east-1"
}
variable "localstack_endpoint" {
description = "LocalStack HTTPS endpoint."
type = string
default = "https://localstack.paulononato.com.br"
}
variable "project_name" {
description = "Short name of the fictional project."
type = string
default = "quantum"
}