20 lines
291 B
Terraform
20 lines
291 B
Terraform
# required
|
|
variable "aws_region" {
|
|
type = string
|
|
default = "us-east-2"
|
|
}
|
|
# required
|
|
variable "project_name" {
|
|
type = string
|
|
default = "doczyai"
|
|
}
|
|
# required
|
|
variable "environment" {
|
|
type = string
|
|
}
|
|
# required
|
|
variable "client_name" {
|
|
type = string
|
|
default = "infra"
|
|
}
|