Structure OpenTofu environments

This commit is contained in:
2026-04-20 16:54:09 -03:00
parent 707852bb3a
commit c363cab9bd
22 changed files with 278 additions and 16 deletions
+17
View File
@@ -0,0 +1,17 @@
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"
}