15 lines
534 B
Go
15 lines
534 B
Go
// GENERATED, DO NOT EDIT THIS FILE
|
|
package github
|
|
|
|
import "github.com/cloudskiff/driftctl/pkg/resource"
|
|
|
|
const GithubTeamMembershipResourceType = "github_team_membership"
|
|
|
|
func initGithubTeamMembershipMetaData(resourceSchemaRepository resource.SchemaRepositoryInterface) {
|
|
resourceSchemaRepository.SetNormalizeFunc(GithubTeamMembershipResourceType, func(res *resource.Resource) {
|
|
val := res.Attrs
|
|
val.SafeDelete([]string{"etag"})
|
|
})
|
|
resourceSchemaRepository.SetFlags(GithubTeamMembershipResourceType, resource.FlagDeepMode)
|
|
}
|