Skip to content

[wip]

[wip] #18

Workflow file for this run

name: Talos Conformance
on:
pull_request_target:
types:
- opened
- synchronize
- reopened
push:
branches:
- main
- vk-test
pull_request:
jobs:
setup-and-test:
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Configure AWS credentials from shared services account
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: arn:aws:iam::478566851380:role/CloudCustodianRole
aws-region: us-east-1
- uses: hashicorp/setup-terraform@v3
- name: Run Terraform Plan
run: |
cd test/conformance
terraform init
echo "done init phase!!!"
aws sts get-caller-identity
aws configure list-profiles
export TF_LOG=trace
terraform plan
- name: Cleanup
if: always()
run: |
echo cleanup