Files
doczyai-pipelines/terraform-approach/terraform/variables.tf
T
2024-03-29 16:31:28 +05:30

37 lines
591 B
Terraform

variable "aws_profile" {
type = string
default = "doczyai"
}
variable "aws_region" {
type = string
default = "us-east-2"
}
variable "project_name" {
type = string
default = "doczyai"
}
variable "environment" {
type = string
default = "dev"
}
variable "client_list" {
type = map(object({
client_name = string
s3_bucket_name = string
}))
default = {
client1 = {
s3_bucket_name = "doczy-dev-infra-textract"
client_name = "cn1"
},
client2 = {
s3_bucket_name = "doczy-dev-infra-textract"
client_name = "cn2"
}
}
}