Add Quantum LocalStack OpenTofu project

This commit is contained in:
2026-04-20 16:48:32 -03:00
commit 248fd37942
10 changed files with 470 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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"
}