mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 01:14:28 -05: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>
42 lines
1.4 KiB
YAML
42 lines
1.4 KiB
YAML
name: Upload Terraform module
|
|
description: "Upload the Terraform module as an artifact."
|
|
|
|
inputs:
|
|
version:
|
|
description: "The Constellation CLI version to use in the Terraform Module. Leave empty when a built CLI is already present when applying the module."
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Copy Terraform module
|
|
shell: bash
|
|
run: |
|
|
cp -r terraform terraform-module
|
|
find terraform-module -name "*.go" -type f -delete
|
|
find terraform-module -name "*.bazel" -type f -delete
|
|
|
|
- name: Stamp version
|
|
shell: bash
|
|
run: |
|
|
sed -i "s/@@CONSTELLATION_VERSION@@/${{ inputs.version }}/g" \
|
|
terraform-module/legacy-module/constellation-cluster/variables.tf \
|
|
terraform-module/legacy-module/aws-constellation/variables.tf \
|
|
terraform-module/legacy-module/azure-constellation/variables.tf \
|
|
terraform-module/legacy-module/gcp-constellation/variables.tf
|
|
|
|
- name: Zip terraform dir
|
|
shell: bash
|
|
run: |
|
|
zip -r terraform-module.zip terraform-module
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
|
|
with:
|
|
name: terraform-module
|
|
path: terraform-module.zip
|
|
|
|
- name: Cleanup Terraform module dir
|
|
shell: bash
|
|
run: |
|
|
rm -r terraform-module terraform-module.zip
|