24 lines
544 B
Terraform
24 lines
544 B
Terraform
variable "aws_region" {
|
|
description = "Regiao AWS simulada no LocalStack."
|
|
type = string
|
|
default = "us-east-1"
|
|
}
|
|
|
|
variable "localstack_endpoint" {
|
|
description = "Endpoint HTTPS do LocalStack."
|
|
type = string
|
|
default = "https://localstack.paulononato.com.br"
|
|
}
|
|
|
|
variable "project_name" {
|
|
description = "Nome curto do projeto ficticio."
|
|
type = string
|
|
default = "quantum"
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Ambiente ficticio da aplicacao."
|
|
type = string
|
|
default = "dev"
|
|
}
|