From 68405dcda9bfee0686d3d11b3cdea13c7f9a2e57 Mon Sep 17 00:00:00 2001 From: himanshu-uniyal Date: Thu, 22 Oct 2020 14:48:54 +0530 Subject: [PATCH] terratest removed --- .github/workflows/terratest.yml | 60 --------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 .github/workflows/terratest.yml diff --git a/.github/workflows/terratest.yml b/.github/workflows/terratest.yml deleted file mode 100644 index e140d20..0000000 --- a/.github/workflows/terratest.yml +++ /dev/null @@ -1,60 +0,0 @@ -name: 'Terratest GitHub Actions' -on: - pull_request: - branches: - - master - types: [labeled] - -jobs: - terraform: - name: 'Terraform' - runs-on: ubuntu-latest - steps: - - - name: 'Checkout' - uses: actions/checkout@master - - - name: Configure AWS Credentials - uses: clouddrove/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.TEST_AWS_ACCESS_KEY }} - aws-secret-access-key: ${{ secrets.TEST_AWS_ACCESS_SECRET_KEY }} - aws-region: us-east-2 - - - name: 'Terratest for alb' - if: ${{ github.event.label.name == 'terratest' }} - uses: 'clouddrove/github-actions@v4.0' - with: - actions_subcommand: 'terratest' - tf_actions_working_dir: '_test/alb' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: 'Terratest for clb' - if: ${{ github.event.label.name == 'terratest' }} - uses: 'clouddrove/github-actions@v4.0' - with: - actions_subcommand: 'terratest' - tf_actions_working_dir: '_test/clb' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: 'Terratest for nlb' - if: ${{ github.event.label.name == 'terratest' }} - uses: 'clouddrove/github-actions@v4.0' - with: - actions_subcommand: 'terratest' - tf_actions_working_dir: '_test/nlb' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: 'Slack Notification' - uses: clouddrove/action-slack@v2 - with: - status: ${{ job.status }} - fields: repo,author - author_name: 'CloudDrove' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # required - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TERRAFORM }} # required - if: always() \ No newline at end of file