-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from clouddrove/CD-249
Cd 249
- Loading branch information
Showing
10 changed files
with
172 additions
and
218 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: 'Create README.md file' | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
readme-create: | ||
name: 'readme-create' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout' | ||
uses: actions/checkout@master | ||
|
||
- name: Set up Python 3.7. | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: 'create readme' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'readme' | ||
github_token: '${{ secrets.GITHUB}}' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}} | ||
|
||
|
||
- name: pre-commit check errors | ||
uses: pre-commit/action@v2.0.0 | ||
continue-on-error: true | ||
|
||
- name: pre-commit fix erros | ||
uses: pre-commit/action@v2.0.0 | ||
continue-on-error: true | ||
|
||
- name: 'push readme' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
continue-on-error: true | ||
with: | ||
actions_subcommand: 'push' | ||
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() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,72 @@ | ||
name: 'Terraform GitHub Actions' | ||
on: | ||
- pull_request | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
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: 'Terraform Format' | ||
uses: clouddrove/github-actions@v2.0 | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'fmt' | ||
|
||
- name: 'Terraform Init For fifo' | ||
uses: clouddrove/github-actions@v2.0 | ||
- name: 'Terraform init' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'init' | ||
tf_actions_working_dir: ./_example/fifo | ||
|
||
- name: 'Terraform Init For standard' | ||
uses: clouddrove/github-actions@v2.0 | ||
- name: 'Terraform validate' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'validate' | ||
tf_actions_working_dir: ./_example/fifo | ||
|
||
- name: 'Terraform plan' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'plan' | ||
tf_actions_working_dir: ./_example/fifo | ||
|
||
- name: 'Terraform init' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'init' | ||
tf_actions_working_dir: ./_example/standard | ||
|
||
- name: Configure AWS Credentials | ||
uses: clouddrove/configure-aws-credentials@v1 | ||
- name: 'Terraform validate' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
aws-region: us-east-2 | ||
actions_subcommand: 'validate' | ||
tf_actions_working_dir: ./_example/standard | ||
|
||
- name: 'Terratest For fifo' | ||
uses: clouddrove/github-actions@v2.0 | ||
- name: 'Terraform plan' | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'plan' | ||
tf_actions_working_dir: ./_example/fifo | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 'Terratest For standard' | ||
uses: clouddrove/github-actions@v2.0 | ||
with: | ||
actions_subcommand: 'terratest' | ||
tf_actions_working_dir: ./_test/standard | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
tf_actions_working_dir: ./_example/standard | ||
|
||
- name: 'Slack Notification' | ||
uses: clouddrove/action-slack@v2 | ||
with: | ||
status: ${{ job.status }} | ||
fields: repo,author | ||
author_name: 'Clouddrove' | ||
author_name: 'CloudDrove' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # required | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} # required | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TERRAFORM }} # required | ||
if: always() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
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' | ||
if: ${{ github.event.label.name == 'terratest' }} | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'terratest' | ||
tf_actions_working_dir: _test/fifo | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 'Terratest' | ||
if: ${{ github.event.label.name == 'terratest' }} | ||
uses: 'clouddrove/github-actions@v4.0' | ||
with: | ||
actions_subcommand: 'terratest' | ||
tf_actions_working_dir: _test/standard | ||
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() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
repos: | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.12.0 | ||
rev: v1.43.0 | ||
hooks: | ||
- id: terraform_fmt | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.0.0 | ||
rev: v3.2.0 | ||
hooks: | ||
- id: check-merge-conflict | ||
- id: trailing-whitespace | ||
- id: check-yaml | ||
- id: check-added-large-files | ||
- id: trailing-whitespace |
Oops, something went wrong.