2023-11-08 13:10:01 -05:00
|
|
|
name: Upload Terraform module
|
|
|
|
description: "Upload the Terraform module as an artifact."
|
2023-11-13 12:46:20 -05:00
|
|
|
|
|
|
|
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."
|
|
|
|
|
2023-11-08 13:10:01 -05:00
|
|
|
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
|
2023-11-13 12:46:20 -05:00
|
|
|
|
|
|
|
- name: Stamp version
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-11-13 14:13:24 -05:00
|
|
|
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
|
2023-11-13 12:46:20 -05:00
|
|
|
|
2023-11-08 13:10:01 -05:00
|
|
|
- name: Zip terraform dir
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
zip -r terraform-module.zip terraform-module
|
2023-11-13 12:46:20 -05:00
|
|
|
|
2023-11-08 13:10:01 -05:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3
|
|
|
|
with:
|
|
|
|
name: terraform-module
|
|
|
|
path: terraform-module.zip
|
2023-11-13 12:46:20 -05:00
|
|
|
|
2023-11-08 13:10:01 -05:00
|
|
|
- name: Cleanup Terraform module dir
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2023-11-10 07:32:18 -05:00
|
|
|
rm -r terraform-module terraform-module.zip
|