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

25 lines
392 B
Terraform

# required
variable "aws_profile" {
type = string
default = "doczy_uat"
}
# required
variable "aws_region" {
type = string
default = "us-east-2"
}
# required
variable "project_name" {
type = string
default = "doczyai"
}
# required
variable "environment" {
type = string
default = "uat"
}
# required
variable "client_name" {
type = string
default = "infra"
}