Releases: mineiros-io/terraform-github-team
Releases · mineiros-io/terraform-github-team
v0.9.0
v0.8.0
Changelog
Added
- 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 outputs
- Add support for default maintainer
v0.7.0
Changelog
BREAKING CHANGES
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.
Migration from previous versions
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.
Added
- Add support for Official GitHub Terraform Provider
integrations/github
Removed
- Removed support for Terraform < 1.0
- Removed support for GitHub Provider < 4.0
- Removed compatibility to Hashicorp GitHub Terraform Provider
hashicorp/github
v0.6.0
Changelog
Added
- Added support for Terraform
v1
v0.5.2
Changelog
Fixed
- Fix the bug where
repo_maintain
usesrepo_admin
to set maintain
permissions andrepo_triage
usesrepo_push
to set triage permissions (thanks to @PavelSusloparov for providing this fix)
v0.5.1
Changelog
Added
- Add support for admin, maintain and triage repositories permissions (thanks to @PavelSusloparov )
v0.5.0
Added
- Add support for Terraform
v0.15
Fixed
- Preserve case of user names added to teams in plan output