Skip to content

Commit 0b9b4fd

Browse files
Add support for access boundaries (#7144) (#5130)
* Add support for access boundaries * Use IAM v2 API * Use handwritten test to avoid parallelism * Add update step to tests * gofmt Signed-off-by: Modular Magician <[email protected]> Signed-off-by: Modular Magician <[email protected]>
1 parent 2aca606 commit 0b9b4fd

File tree

6 files changed

+1109
-2
lines changed

6 files changed

+1109
-2
lines changed

.changelog/7144.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:new-resource
2+
`google_iam_access_boundary_policy`
3+
```

google-beta/provider.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,9 +1088,9 @@ func Provider() *schema.Provider {
10881088
return provider
10891089
}
10901090

1091-
// Generated resources: 296
1091+
// Generated resources: 297
10921092
// Generated IAM resources: 201
1093-
// Total generated resources: 497
1093+
// Total generated resources: 498
10941094
func ResourceMap() map[string]*schema.Resource {
10951095
resourceMap, _ := ResourceMapWithErrors()
10961096
return resourceMap
@@ -1431,6 +1431,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
14311431
"google_healthcare_consent_store_iam_member": ResourceIamMember(HealthcareConsentStoreIamSchema, HealthcareConsentStoreIamUpdaterProducer, HealthcareConsentStoreIdParseFunc),
14321432
"google_healthcare_consent_store_iam_policy": ResourceIamPolicy(HealthcareConsentStoreIamSchema, HealthcareConsentStoreIamUpdaterProducer, HealthcareConsentStoreIdParseFunc),
14331433
"google_iam_deny_policy": resourceIAM2DenyPolicy(),
1434+
"google_iam_access_boundary_policy": resourceIAM2AccessBoundaryPolicy(),
14341435
"google_iam_workload_identity_pool": resourceIAMBetaWorkloadIdentityPool(),
14351436
"google_iam_workload_identity_pool_provider": resourceIAMBetaWorkloadIdentityPoolProvider(),
14361437
"google_iam_workforce_pool": resourceIAMWorkforcePoolWorkforcePool(),

0 commit comments

Comments
 (0)