NOTE: You do not have to specify all the attributes when creating a new resource. If you don't, defaults as defined by the GitHub Provider will be used. The next Sync
will fill out the remaining attributes in the YAML configuration file.
NOTE: When creating a new resource, you can specify all the attributes that the resource supports even if changes to them are ignored. If you do specify attributes to which changes are ignored, their values are going to be applied during creation but a future Sync
will remove them from YAML configuration file.
- Add a new entry to the YAML configuration file - see EXAMPLE.yml for inspiration
- Follow How to apply GitHub Management changes to GitHub? to create your newly added resource
Example
I want to invite galargh
as an admin to pl-strflt
organization through GitHub Management.
I ensure the YAML configuration file has the following entry:
members:
admin:
- galargh
I push my changes to a new branch and create a PR. An admin reviews the PR and merges it if everything looks OK.
- Change the value of an attribute in the YAML configuration file - see EXAMPLE.yml for inspiration
- Follow How to apply GitHub Management changes to GitHub? to create your newly added resource
Example
I want to demote galargh
from being an admin
of pl-strflt
organization to a regular member
through GitHub Management.
I change the entry for galargh
in the YAML configuration file from:
members:
admin:
- galargh
to:
members:
member:
- galargh
I push my changes to a new branch and create a PR. An admin reviews the PR and merges it if everything looks OK.
- Add one of the supported resources names to the
resource_types
array in terraform/locals_override.tf - Follow How to apply GitHub Management changes to GitHub? - the plan should not contain any changes
- Follow How to synchronize GitHub Management with GitHub? to import all the resources you want to manage for the organization
Example
I want to be able to configure who the member of the pl-strflt
organization is through GitHub Management.
I add github_membership
to resource_types
array in terraform/locals_override.tf. I push my changes to a new branch and create a PR. An admin reviews the PR and merges the PR if everything looks OK. Then, they synchronize GitHub Management with GitHub configuration.
- If it doesn't exist yet, create an entry for the resource in terraform/resources_override.tf and copy the
lifecycle.ignore_changes
block from the corresponding resource in terraform/resources.tf - Add the attribute name to the
lifecycle.ignore_changes
block of the resource - Follow How to apply GitHub Management changes to GitHub? - the plan should not contain any changes
- Follow How to synchronize GitHub Management with GitHub? to remove all the resource attributes you do not want to manage for the organization anymore
Example
I do not want to configure the roles of pl-strflt
organization members through GitHub Management anymore.
I ensure that terraform/resources_override.tf
contains the following entry:
resource "github_membership" "this" {
lifecycle {
# @resources.membership.ignore_changes
ignore_changes = [
role
]
}
}
I push my changes to a new branch and create a PR. An admin reviews the PR and merges the PR if everything looks OK. Then, they synchronize GitHub Management with GitHub configuration.
- Create a pull request from the branch to the default branch
- Merge the pull request once the
Comment
check passes and you verify the plan posted as a comment - Confirm that the
Apply
GitHub Action workflow run applied the plan by inspecting the output
NOTE: Remember that the Sync
operation modifes terraform state. Even if you run it from a branch, it modifies the global state that is shared with other branches. There is only one terraform state per organization.
NOTE: Sync
will force push changes directly to the branch you run it from.
- Run
Sync
GitHub Action workflow from your desiredbranch
- this will import all the resources from the actual GitHub configuration state into GitHub Management
- Run
Upgrade
GitHub Action workflow - Merge the pull request that the workflow created once the
Comment
check passes and you verify the plan posted as a comment - the plan should not contain any changes
- Run
Clean
GitHub Action workflow with a chosen regex - Follow How to synchronize GitHub Management with GitHub?
- Create or modify
scripts/src/actions/fix-yaml-config.ts
file
Example
I want to ensure that all the public repositories in my organization have their default branches protected.
To do that, I ensure the following content is present in scripts/src/actions/fix-yaml-config.ts
:
import 'reflect-metadata'
import { protectDefaultBranches } from './shared/protect-default-branches'
protectDefaultBranches()