Releases: mineiros-io/terraform-github-organization
Releases · mineiros-io/terraform-github-organization
v0.9.0
Changelog
BREAKING CHANGES
- Drop support for Terraform GitHub Provider
4.x
- Require Terraform GitHub Provider version
5.3
and above to supportgithub_organization_settings
resource
Added
- Add support for organization settings by implementing the
github_organization_settings
resource
v0.8.0
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
- Add support for Terraform
v1
v0.5.0
Added
- Add support for Terraform
v0.15
v0.4.1
Added
- Add optional safeguard to validate if a GitHub user exists before trying to add it to the organization
v0.4.0
v0.3.0
v0.2.0
v0.1.4
Changelog
Added
- Add CHANGELOG.md.
Changed
- Switch CI from SemaphoreCI to GitHub Actions.