All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Add support for Terraform GitHub Provider version
5.x
- Automatically remove maintainers from members to resolve conflicts on the fly
- BREAKING CHANGE: Add support for
module_enabled
- BREAKING CHANGE: Drop support for broken terraform
1.1.0
and1.1.1
which might corrupt terraform state. - BREAKING CHANGE: Drop inputs from outpus
- Add support for default maintainer
We dropped support for Terraform pre 1.0 and GitHub Terraform Provider pre 4.0.
In addition we changed to the integrations/github
official GitHub Terraform Provider.
This needs migration actions if you already used this module with the hashicorp/github
provider and want to upgrade.
To migrate from a previous version, please ensure that you are using the
integrations/github
official GitHub Terraform Provider.
terraform {
required_version = "~> 1.0"
required_providers {
github = {
source = "integrations/github"
version = "~> 4.0"
}
}
}
Once you've updated the provider, a manual state migration is required to migrate existing resources to the new provider. The following command will replace the provider in the state.
terraform state replace-provider registry.terraform.io/hashicorp/github registry.terraform.io/integrations/github
After you've migrated the state, please run
terrafrm init
to apply the changes to the resources.
- Add support for Official GitHub Terraform Provider
integrations/github
- Removed support for Terraform < 1.0
- Removed support for GitHub Provider < 4.0
- Removed compatibility to Hashicorp GitHub Terraform Provider
hashicorp/github
- Add support for Terraform
v1
- Fix the bug where
repo_maintain
usesrepo_admin
to set maintain permissions andrepo_triage
usesrepo_push
to set triage permissions
- Add support for
admin
,maintain
andtriage
repositories permissions
- Add support for Terraform
v0.15
- Preserve case of user names added to teams in plan output
- Add support for Github Provider
v4
- Tests now check for idem-potency after applying
- Fixed non-idem-potent applies when referencing repositories with uppercase letters in names (#31)
- Add support for Terraform
v0.14
- Add
CHANGELOG.md
- Add support for Terraform
v0.13
- Add support for Terraform Github Provider
v3
- Prepare support for Terraform
v0.14
(needs terraformv0.12.20
or above)
- Switch CI from SemaphoreCI to GitHub Actions
0.1.3 - 2020-03-05
- New format for README.md and LICENSE.
0.1.2 - 2020-03-03
- Upgrade the Github provider to version
v2.4
0.1.1 - 2020-03-02
- Sort go imports.
- Fix some typos in README.md.
0.1.0 - 2020-03-02
- Add readme in markdown syntax instead of asciidoc for
registry.terraform.io
. - Use pre-commit hooks.
- Add a new Makefile for running common tasks.
- Split up tests and test outputs.
0.0.1 - 2020-01-15
- This is the initial release of our terraform-github-team module that supports Team, Nested Team, Memberships, Team Repositories.