Add Banner and update github workflow to push static folder on arc-docs #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Terraform | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, reopened, synchronize] | |
branches: [main] | |
release: | |
types: [published] | |
env: | |
DEFAULT_REGION: us-east-1 | |
AWS_ACCESS_KEY_ID: localstack | |
AWS_SECRET_ACCESS_KEY: localstack | |
jobs: | |
check-format: | |
runs-on: ubuntu-latest | |
container: hashicorp/terraform | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Terraform Format Check | |
run: terraform fmt -check -recursive -diff | |
validations: | |
runs-on: ubuntu-latest | |
container: hashicorp/terraform | |
strategy: | |
matrix: { | |
dir: ['example'] | |
} | |
services: | |
localstack: | |
image: localstack/localstack | |
env: | |
SERVICES: apigateway,cloudformation,cloudwatch,dynamodb,es,firehose,iam,kinesis,lambda,route53,redshift,s3,secretsmanager,ses,sns,sqs,ssm,stepfunctions,sts,kms | |
ports: | |
- 4566:4566 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Terraform Init | |
run: terraform init -upgrade | |
working-directory: ${{ matrix.dir }} | |
- name: Terraform Validate | |
run: terraform validate | |
working-directory: ${{ matrix.dir }} | |
- name: Terraform Plan (Mock) | |
run: terraform plan | |
working-directory: ${{ matrix.dir }} |