mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-29 18:18:41 -04:00
terraform: Terraform module for AWS (#2503)
This commit is contained in:
parent
0bac72261d
commit
cea6204b37
94 changed files with 912 additions and 87 deletions
24
.github/actions/upload_terraform_module/action.yml
vendored
Normal file
24
.github/actions/upload_terraform_module/action.yml
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
name: Upload Terraform module
|
||||
description: "Upload the Terraform module as an artifact."
|
||||
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: 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
|
Loading…
Add table
Add a link
Reference in a new issue