terraform-github-actions
terraform-github-actions copied to clipboard
GitHub actions for terraform
### Suggestion It would be great to be able to pass the output from the `terraform-plan` GitHub action as an input to the `terraform-apply` action since it is quite common...
### Problem description Relates to https://github.com/dflook/terraform-github-actions/issues/177 Terraform's human readable output, the output we attach to the PR and use as a point of comparison, is not deterministic and as a...
### Suggestion Hi, I just cam a across a warning for a deprecated field, e.g: ``` Warning: "use_microsoft_graph": [DEPRECATED] This field now defaults to `true` and will be removed in...
I've noticed that when the `add_github_comment` is true, the variables reported in the comment on the Pull Request might contain sensitive data. I think the action should either mask the...
### Suggestion Using automation tools to run terraform is great, but sometimes jobs get cancelled and leaves the lock in tf state. It would be great to have an action...
### Suggestion Would it be possible to have the terraform apply on comment create a status? Would like my repo to be un-mergeable until the terraform-apply completes with success, then...
I've been running with ```yaml name: Terraform Plan on: [pull_request] jobs: plan: runs-on: ubuntu-latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} AWS_ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.SECRET_ACCESS_KEY }} steps: - name:...
Both a list of resources and a json representation of the state file
These backends were removed in 1.3.0
### Problem description I am seeing differences in the plan between plan and apply stages where unused attributes show as default values (empty string, empty map, etc.) in the plan,...