Files
doczyai-pipelines/devops-pipeline/other-resources/variables.tf
T
2024-06-12 17:46:35 +02:00

69 lines
954 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"
}
# required
variable "client_name" {
type = string
default = "infra"
}
# s3 bucket
variable "devops_s3_bucket" {
type = object({
name = string
})
default = {
name = "devops-resources"
}
}
# s3 bucket - raw-data-ingestion
variable "raw_data_ingestion_s3_bucket" {
type = object({
name = string
})
default = {
name = "raw-data-ingestion"
}
}
# s3 bucket - mwaa-resources
variable "mwaa_resources_s3_bucket" {
type = object({
name = string
})
default = {
name = "mwaa-resources"
}
}
variable "aws_account_id" {
type = string
}
variable "storage_integration_external_id" {
type = string
}
variable "cross_account_target_account_id" {
type = string
}