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

18 lines
409 B
Terraform

variable "aws_region" {
description = "AWS region used by 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 project."
type = string
default = "quantum"
}