Skip to content

v0.8.0

Compare
Choose a tag to compare
@giautm giautm released this 24 Jan 06:16
· 28 commits to master since this release
3361940

Breaking Change

In this version of the TF provider, we no longer bundle the Atlas-CLI binary with the provider. This means you have to install the binary by yourself via our install script on your CI system.

With GitHub, please add another step like the below before the TF apply step:

      - name: Install Atlas CLI
        run: |
          curl -sSf https://atlasgo.sh | sh
        env:
          ATLAS_FLAVOR: enterprise

To use the login-require feature on your CI system. Please set the ATLAS_TOKEN environment variable for the TF apply step:

      - name: Terraform Apply
        run: |
          terraform apply --auto-approve
        env:
          ATLAS_TOKEN: ${{ secrets.ATLAS_TOKEN }}

What's Changed

  • .github/workflows: add login-feature test by @giautm in #118
  • provider: add binary_path attribute by @giautm in #116

Full Changelog: v0.7.0...v0.8.0