2023-11-08 13:10:01 -05:00
|
|
|
locals {
|
|
|
|
region = substr(var.zone, 0, length(var.zone) - 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
module "aws_iam" {
|
2023-12-11 09:55:44 -05:00
|
|
|
source = "../../infrastructure/iam/aws"
|
2023-11-08 13:10:01 -05:00
|
|
|
name_prefix = var.name_prefix
|
|
|
|
region = local.region
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "null_resource" "ensure_yq" {
|
|
|
|
provisioner "local-exec" {
|
|
|
|
command = <<EOT
|
2023-11-13 12:46:20 -05:00
|
|
|
../common/install-yq.sh
|
2023-11-08 13:10:01 -05:00
|
|
|
EOT
|
|
|
|
}
|
|
|
|
triggers = {
|
|
|
|
always_run = timestamp()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-10 07:32:18 -05:00
|
|
|
module "fetch_image" {
|
2023-11-13 12:46:20 -05:00
|
|
|
source = "../common/fetch-image"
|
2023-11-10 07:32:18 -05:00
|
|
|
csp = "aws"
|
2023-11-08 13:10:01 -05:00
|
|
|
attestation_variant = var.enable_snp ? "aws-sev-snp" : "aws-nitro-tpm"
|
|
|
|
region = local.region
|
|
|
|
image = var.image
|
|
|
|
depends_on = [module.aws_iam, null_resource.ensure_yq]
|
|
|
|
}
|
|
|
|
|
|
|
|
module "aws" {
|
2023-12-15 04:36:58 -05:00
|
|
|
source = "../../infrastructure/aws"
|
|
|
|
name = var.name
|
|
|
|
node_groups = var.node_groups
|
|
|
|
iam_instance_profile_name_worker_nodes = module.aws_iam.iam_instance_profile_name_worker_nodes
|
|
|
|
iam_instance_profile_name_control_plane = module.aws_iam.iam_instance_profile_name_control_plane
|
|
|
|
image_id = module.fetch_image.image
|
|
|
|
region = local.region
|
|
|
|
zone = var.zone
|
|
|
|
debug = var.debug
|
|
|
|
enable_snp = var.enable_snp
|
|
|
|
custom_endpoint = var.custom_endpoint
|
2024-04-19 05:07:57 -04:00
|
|
|
additional_tags = var.additional_tags
|
2023-11-08 13:10:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
module "constellation" {
|
|
|
|
source = "../constellation-cluster"
|
|
|
|
csp = "aws"
|
2023-11-13 12:46:20 -05:00
|
|
|
debug = var.debug
|
2023-11-08 13:10:01 -05:00
|
|
|
name = var.name
|
|
|
|
image = var.image
|
|
|
|
microservice_version = var.microservice_version
|
|
|
|
kubernetes_version = var.kubernetes_version
|
|
|
|
uid = module.aws.uid
|
|
|
|
clusterEndpoint = module.aws.out_of_cluster_endpoint
|
|
|
|
inClusterEndpoint = module.aws.in_cluster_endpoint
|
2023-12-15 04:36:58 -05:00
|
|
|
initSecretHash = module.aws.init_secret
|
|
|
|
ipCidrNode = module.aws.ip_cidr_node
|
2023-11-08 13:10:01 -05:00
|
|
|
apiServerCertSANs = module.aws.api_server_cert_sans
|
|
|
|
node_groups = var.node_groups
|
|
|
|
aws_config = {
|
2023-12-15 04:36:58 -05:00
|
|
|
region = local.region
|
|
|
|
zone = var.zone
|
|
|
|
iam_instance_profile_name_worker_nodes = module.aws_iam.iam_instance_profile_name_worker_nodes
|
|
|
|
iam_instance_profile_name_control_plane = module.aws_iam.iam_instance_profile_name_control_plane
|
2023-11-08 13:10:01 -05:00
|
|
|
}
|
|
|
|
depends_on = [module.aws, null_resource.ensure_yq]
|
|
|
|
}
|