42 lines
973 B
HCL
42 lines
973 B
HCL
terraform {
|
|
required_version = ">= 1.0"
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = "~> 5.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "aws" {
|
|
region = var.region
|
|
}
|
|
|
|
module "bifrost" {
|
|
source = "../../modules/bifrost"
|
|
cloud_provider = "aws"
|
|
service = "ecs"
|
|
region = var.region
|
|
image_tag = var.image_tag
|
|
name_prefix = var.name_prefix
|
|
|
|
# Config: use a file as base, override with variables
|
|
config_json_file = var.config_json_file
|
|
|
|
# Override specific config sections
|
|
config_store = var.config_store
|
|
logs_store = var.logs_store
|
|
providers_config = var.providers_config
|
|
|
|
# Compute
|
|
desired_count = var.desired_count
|
|
cpu = var.cpu
|
|
memory = var.memory
|
|
create_load_balancer = var.create_load_balancer
|
|
|
|
# Autoscaling
|
|
enable_autoscaling = var.enable_autoscaling
|
|
min_capacity = var.min_capacity
|
|
max_capacity = var.max_capacity
|
|
}
|