37 lines
591 B
Terraform
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"
|
|
}
|
|
|
|
}
|
|
} |