Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
kappeler committed Dec 19, 2023
1 parent d832384 commit c0e39c7
Show file tree
Hide file tree
Showing 10 changed files with 60 additions and 414 deletions.
9 changes: 0 additions & 9 deletions .github/CODE_OF_CONDUCT.md

This file was deleted.

11 changes: 0 additions & 11 deletions .github/dependabot.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: 'Terraform'

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
terraform:
name: 'Terraform'
env:
ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
ARM_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }}
ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
runs-on: ubuntu-latest
environment: production
# Use the Bash shell regardless of whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest
defaults:
run:
shell: bash
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout
uses: actions/checkout@v3

# Install the latest version of Terraform CLI and configure the Terraform CLI configuration file with a Terraform Cloud user API token
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

# Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc.
- name: Terraform Init
run: terraform init

# Generates an execution plan for Terraform
- name: Terraform Plan
run: terraform plan -input=false

# Apply Terraform changes
- name: Terraform Apply
run: terraform apply -auto-approve -input=false
174 changes: 0 additions & 174 deletions .github/workflows/tf-drift.yml

This file was deleted.

146 changes: 0 additions & 146 deletions .github/workflows/tf-plan-apply.yml

This file was deleted.

Loading

0 comments on commit c0e39c7

Please sign in to comment.