mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
9667dfff58
* all vars have snail_case * make iam schema consistent * infrastructure schema * terraform: update AWS infrastructure module * fix ci * terraform: update AWS infrastructure module * terraform: update AWS IAM module * terraform: update Azure Infrastructure module inputs Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: update Azure IAM module Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: update GCP infrastructure module Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: update GCP IAM module Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: update OpenStack Infrastructure module Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: update QEMU Infrastructure module Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform-module: fix input name Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: tidy * cli: ignore whitespace in Terraform variable tests * terraform-module: fix AWS output names * terraform-module: fix output references Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * terraform: rename `api_server_cert_sans` * Update terraform/infrastructure/aws/modules/public_private_subnet/variables.tf Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * fix self-managed * terraform: revert AWS modules output file renaming * terraform: remove duplicate varable declaration * terraform: rename Azure location field * ci: adjust output name in self-managed e2e test * e2e: continuously print output in upgrade test * e2e: write to output variables * cli: migrate IAM variable names * cli: make `location` field optional --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: Daniel Weiße <66256922+daniel-weisse@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_name_control_plane}"' -i constellation-conf.yaml
|
|
./yq eval '.provider.aws.iamProfileWorkerNodes = "${var.aws_config.iam_instance_profile_name_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()
|
|
}
|
|
}
|