mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 01:14:28 -05:00
8f2f8bdbbd
* make image optional in the high level modules * align azure variable description * set defaults in convenience modules Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Co-authored-by: Adrian Stobbe <stobbe.adrian@gmail.com>
42 lines
1.3 KiB
YAML
42 lines
1.3 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/constellation-cluster/variables.tf \
|
|
terraform-module/aws-constellation/variables.tf \
|
|
terraform-module/azure-constellation/variables.tf \
|
|
terraform-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
|