24 lines
550 B
Terraform
24 lines
550 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"
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Fictional application environment."
|
|
type = string
|
|
default = "dev"
|
|
}
|