Files
doczyai-pipelines/streamlit-server/variables.tf
T

60 lines
958 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
default = "dev"
}
variable "client_list" {
type = map(object({
client_name = string
}))
default = {
client1 = {
client_name = "cn1"
}
}
}
variable "vpc_id" {
type = string
}
variable "ubuntu_ami" {
type = string
default = "ami-0de7e97fedfbc6ef6" # Switch to this ami-0b8b44ec9a8f90422
}
variable "ec2_instance_type" {
type = string
default = "t2.large"
}
# EC2 iam role name
variable "ec2_iam_role_name" {
type = string
default = "ec2-iam-role"
}
# Cerate an array of ARNS
variable "SecretsNames"{
type = list(string)
default = []
}
variable "acm_arn_dev" {
type = string
default = "arn:aws:acm:us-east-2:660131068782:certificate/3a146592-2b00-4b33-90a6-0d9ab0040d8b"
}