mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
60fc73e0e7
* terraform: move module to legacy-directory * constellation-lib: refactor service account marshalling * terraform-provider: normalize Azure image URIs * constellation-lib: refactor Kubeconfig endpoint rewriting * terraform-provider: add conversion functions for AWS and GCP * terraform-provider: implement `constellation_cluster` resource * terraform-provider: refactor conversion * terraform-provider: implement image and k8s upgrades * terraform-provider: fix linter checks * terraform-provider: refactor to bundle init & upgrade method * constellation-lib: rewrite Kubeconfig endpoint in init * terraform-provider: bind logger and dialer constructors to struct * terraform-provider: move applier to function pointer * terraform-provider: gcp conversion fixes Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform-provider: fix Azure UAMI input * terraform-provider: rename Kubeconfig variable * terraform-provider: tidy * terraform-provider: regenerate docs * constellation-lib: provide Kubeconfig in testing initserver --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
68 lines
2.3 KiB
HCL
68 lines
2.3 KiB
HCL
locals {
|
|
region = substr(var.zone, 0, length(var.zone) - 1)
|
|
}
|
|
|
|
module "aws_iam" {
|
|
source = "../../infrastructure/iam/aws"
|
|
name_prefix = var.name_prefix
|
|
region = local.region
|
|
}
|
|
|
|
resource "null_resource" "ensure_yq" {
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
../common/install-yq.sh
|
|
EOT
|
|
}
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
}
|
|
|
|
module "fetch_image" {
|
|
source = "../common/fetch-image"
|
|
csp = "aws"
|
|
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" {
|
|
source = "../../infrastructure/aws"
|
|
name = var.name
|
|
node_groups = var.node_groups
|
|
iam_instance_profile_worker_nodes = module.aws_iam.worker_nodes_instance_profile
|
|
iam_instance_profile_control_plane = module.aws_iam.control_plane_instance_profile
|
|
ami = module.fetch_image.image
|
|
region = local.region
|
|
zone = var.zone
|
|
debug = var.debug
|
|
enable_snp = var.enable_snp
|
|
custom_endpoint = var.custom_endpoint
|
|
}
|
|
|
|
module "constellation" {
|
|
source = "../constellation-cluster"
|
|
csp = "aws"
|
|
debug = var.debug
|
|
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
|
|
initSecretHash = module.aws.initSecret
|
|
ipCidrNode = module.aws.ip_cidr_nodes
|
|
apiServerCertSANs = module.aws.api_server_cert_sans
|
|
node_groups = var.node_groups
|
|
aws_config = {
|
|
region = local.region
|
|
zone = var.zone
|
|
iam_instance_profile_worker_nodes = module.aws_iam.worker_nodes_instance_profile
|
|
iam_instance_profile_control_plane = module.aws_iam.control_plane_instance_profile
|
|
}
|
|
depends_on = [module.aws, null_resource.ensure_yq]
|
|
}
|