Files
proxy/terraform/variables.tf
2025-02-18 20:55:13 -05:00

17 lines
394 B
HCL

variable "aws_region" {
type = string
description = "The AWS region things are created in."
sensitive = true
}
variable "aws_access" {
type = string
description = "The access key to generate the Gitea instance."
sensitive = true
}
variable "aws_secret" {
type = string
description = "The access secret to generate the Gitea instance."
sensitive = true
}