Files
doczyai-pipelines/archive/devops-pipeline/terraform-backend-resources/variables.tf
T

20 lines
291 B
Terraform
Raw Normal View History

2024-04-12 16:57:30 +05:30
# required
variable "aws_region" {
type = string
default = "us-east-2"
}
# required
variable "project_name" {
type = string
default = "doczyai"
}
# required
variable "environment" {
2024-06-06 17:09:04 +02:00
type = string
2024-04-12 16:57:30 +05:30
}
# required
variable "client_name" {
type = string
default = "infra"
2024-05-30 14:54:15 -05:00
}