Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/snyk/driftctl-action
GitHub Action for driftctl
https://github.com/snyk/driftctl-action
driftctl infrastructure-as-code
Last synced: 3 months ago
JSON representation
GitHub Action for driftctl
- Host: GitHub
- URL: https://github.com/snyk/driftctl-action
- Owner: snyk
- License: mit
- Created: 2021-03-03T14:42:44.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-05T10:50:07.000Z (8 months ago)
- Last Synced: 2024-10-31T10:50:00.977Z (3 months ago)
- Topics: driftctl, infrastructure-as-code
- Language: Shell
- Homepage:
- Size: 57.6 KB
- Stars: 18
- Watchers: 75
- Forks: 13
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## This project is now in maintenance mode. We cannot promise to review contributions. Please feel free to fork the project to apply any changes you might want to make.
# GitHub Action for driftctl
`driftctl-action` runs a full driftctl scan in your GitHub Actions workflow.
## Inputs
### `version`
The version of driftctl to install. Default to `latest`.
### `args`
A single string containing any additional arguments or flags to supply to the `scan` command. Defaults to an empty string.
## Example usage
```yml
name: Test Workflowon: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run driftctl
uses: snyk/driftctl-action@v1
with:
version: 0.38.2
```### How to Contribute
Should you wish to make a contribution please open a pull request against this repository with a clear description of the change with tests demonstrating the functionality.
You will also need to agree to the [Contributor Agreement](https://gist.github.com/snyksec/201fc2fd188b4a68973998ec30b57686) before the code can be accepted and merged.