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>
192 lines
7.5 KiB
HCL
192 lines
7.5 KiB
HCL
locals {
|
|
yq_node_groups = join("\n", flatten([
|
|
for name, group in var.node_groups : [
|
|
"./yq eval '.nodeGroups.${name}.role = \"${group.role}\"' -i constellation-conf.yaml",
|
|
"./yq eval '.nodeGroups.${name}.zone = \"${group.zone}\"' -i constellation-conf.yaml",
|
|
"./yq eval '.nodeGroups.${name}.instanceType = \"${group.instance_type}\"' -i constellation-conf.yaml",
|
|
"./yq eval '.nodeGroups.${name}.stateDiskSizeGB = ${group.disk_size}' -i constellation-conf.yaml",
|
|
"./yq eval '.nodeGroups.${name}.stateDiskType = \"${group.disk_type}\"' -i constellation-conf.yaml",
|
|
"./yq eval '.nodeGroups.${name}.initialCount = ${group.initial_count}' -i constellation-conf.yaml"
|
|
]
|
|
]))
|
|
gcp_sa_file_path = "service_account_file.json"
|
|
}
|
|
|
|
resource "null_resource" "ensure_cli" {
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
${path.module}/install-constellation.sh ${var.constellation_version}
|
|
EOT
|
|
}
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
}
|
|
|
|
// terraform_data resource so that it is run only once
|
|
resource "terraform_data" "config_generate" {
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
./constellation config generate ${var.csp}
|
|
EOT
|
|
}
|
|
depends_on = [
|
|
null_resource.ensure_cli
|
|
]
|
|
}
|
|
|
|
resource "null_resource" "aws_config" {
|
|
count = var.aws_config != null ? 1 : 0
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
./yq eval '.provider.aws.region = "${var.aws_config.region}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.aws.zone = "${var.aws_config.zone}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.aws.iamProfileControlPlane = "${var.aws_config.iam_instance_profile_control_plane}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.aws.iamProfileWorkerNodes = "${var.aws_config.iam_instance_profile_worker_nodes}"' -i constellation-conf.yaml
|
|
EOT
|
|
}
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
depends_on = [
|
|
terraform_data.config_generate
|
|
]
|
|
}
|
|
|
|
resource "null_resource" "azure_config" {
|
|
count = var.azure_config != null ? 1 : 0
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
./yq eval '.provider.azure.subscription = "${var.azure_config.subscription}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.azure.tenant = "${var.azure_config.tenant}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.azure.location = "${var.azure_config.location}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.azure.resourceGroup = "${var.azure_config.resourceGroup}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.azure.userAssignedIdentity = "${var.azure_config.userAssignedIdentity}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.azure.deployCSIDriver = ${var.azure_config.deployCSIDriver}' -i constellation-conf.yaml
|
|
./yq eval '.provider.azure.secureBoot = ${var.azure_config.secureBoot}' -i constellation-conf.yaml
|
|
./yq eval '.infrastructure.azure.resourceGroup = "${var.azure_config.resourceGroup}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.azure.subscriptionID = "${var.azure_config.subscription}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.azure.networkSecurityGroupName = "${var.azure_config.networkSecurityGroupName}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.azure.loadBalancerName = "${var.azure_config.loadBalancerName}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.azure.userAssignedIdentity = "${var.azure_config.userAssignedIdentity}"' -i constellation-state.yaml
|
|
if [ '${var.azure_config.maaURL}' != '' ]; then
|
|
./yq eval '.infrastructure.azure.attestationURL = "${var.azure_config.maaURL}"' -i constellation-state.yaml
|
|
./constellation maa-patch ${var.azure_config.maaURL}
|
|
fi
|
|
EOT
|
|
}
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
depends_on = [
|
|
terraform_data.config_generate
|
|
]
|
|
}
|
|
|
|
resource "null_resource" "service_account_file" {
|
|
count = var.gcp_config != null ? 1 : 0
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
echo ${var.gcp_config.serviceAccountKey} | base64 -d > "${local.gcp_sa_file_path}"
|
|
EOT
|
|
}
|
|
provisioner "local-exec" {
|
|
when = destroy
|
|
command = "rm ${self.triggers.file_path}"
|
|
}
|
|
triggers = {
|
|
always_run = timestamp()
|
|
file_path = local.gcp_sa_file_path
|
|
}
|
|
}
|
|
|
|
resource "null_resource" "gcp_config" {
|
|
count = var.gcp_config != null ? 1 : 0
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
./yq eval '.provider.gcp.project = "${var.gcp_config.project}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.gcp.region = "${var.gcp_config.region}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.gcp.zone = "${var.gcp_config.zone}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.gcp.serviceAccountKeyPath = "${local.gcp_sa_file_path}"' -i constellation-conf.yaml
|
|
./yq eval '.infrastructure.gcp.projectID = "${var.gcp_config.project}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.gcp.ipCidrPod = "${var.gcp_config.ipCidrPod}"' -i constellation-state.yaml
|
|
EOT
|
|
}
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
depends_on = [
|
|
terraform_data.config_generate, null_resource.service_account_file
|
|
]
|
|
}
|
|
|
|
resource "null_resource" "config" {
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
./yq eval '.name = "${var.name}"' -i constellation-conf.yaml
|
|
if [ "${var.image}" != "" ]; then
|
|
./yq eval '.image = "${var.image}"' -i constellation-conf.yaml
|
|
fi
|
|
if [ "${var.kubernetes_version}" != "" ]; then
|
|
./yq eval '.kubernetesVersion = "${var.kubernetes_version}"' -i constellation-conf.yaml
|
|
fi
|
|
if [ "${var.microservice_version}" != "" ]; then
|
|
./yq eval '.microserviceVersion = "${var.microservice_version}"' -i constellation-conf.yaml
|
|
fi
|
|
if [ "${var.serviceCidr}" != "" ]; then
|
|
./yq eval '.serviceCIDR = "${var.serviceCidr}"' -i constellation-conf.yaml
|
|
fi
|
|
${local.yq_node_groups}
|
|
./constellation config fetch-measurements ${var.debug == true ? "--insecure" : ""}
|
|
EOT
|
|
}
|
|
|
|
depends_on = [
|
|
null_resource.aws_config, null_resource.gcp_config, null_resource.azure_config
|
|
]
|
|
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
}
|
|
|
|
|
|
resource "null_resource" "infra_state" {
|
|
provisioner "local-exec" {
|
|
command = <<EOT
|
|
./yq eval '.infrastructure.uid = "${var.uid}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.inClusterEndpoint = "${var.inClusterEndpoint}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.clusterEndpoint = "${var.clusterEndpoint}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.initSecret = "'"$(echo "${var.initSecretHash}" | tr -d '\n' | hexdump -ve '/1 "%02x"')"'"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.apiServerCertSANs = ${jsonencode(var.apiServerCertSANs)}' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.name = "${var.name}"' -i constellation-state.yaml
|
|
./yq eval '.infrastructure.ipCidrNode = "${var.ipCidrNode}"' -i constellation-state.yaml
|
|
EOT
|
|
}
|
|
depends_on = [
|
|
terraform_data.config_generate
|
|
]
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
}
|
|
|
|
|
|
resource "null_resource" "apply" {
|
|
provisioner "local-exec" {
|
|
command = "./constellation apply --debug --yes --skip-phases infrastructure"
|
|
}
|
|
|
|
provisioner "local-exec" {
|
|
when = destroy
|
|
command = "./constellation terminate --yes && rm constellation-conf.yaml constellation-mastersecret.json && rm -r constellation-upgrade"
|
|
}
|
|
|
|
depends_on = [
|
|
null_resource.infra_state, null_resource.config, null_resource.ensure_cli
|
|
]
|
|
triggers = {
|
|
always_run = timestamp()
|
|
}
|
|
}
|