Skip to content

Commit b58487b

Browse files
Added support for project-level custom modules (#8993) (#6315)
* Added support for project-level custom modules Related to b/296259216 * gofmt * Added client-side validation of display_name * Fixed expressions in update test * Added mutex Signed-off-by: Modular Magician <[email protected]>
1 parent f65d714 commit b58487b

File tree

7 files changed

+1679
-2
lines changed

7 files changed

+1679
-2
lines changed

.changelog/8993.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_scc_project_custom_module`
3+
```

google-beta/provider/provider.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,9 +1121,9 @@ func DatasourceMapWithErrors() (map[string]*schema.Resource, error) {
11211121
})
11221122
}
11231123

1124-
// Generated resources: 388
1124+
// Generated resources: 389
11251125
// Generated IAM resources: 240
1126-
// Total generated resources: 628
1126+
// Total generated resources: 629
11271127
func ResourceMap() map[string]*schema.Resource {
11281128
resourceMap, _ := ResourceMapWithErrors()
11291129
return resourceMap
@@ -1682,6 +1682,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
16821682
"google_secret_manager_secret_version": secretmanager.ResourceSecretManagerSecretVersion(),
16831683
"google_scc_mute_config": securitycenter.ResourceSecurityCenterMuteConfig(),
16841684
"google_scc_notification_config": securitycenter.ResourceSecurityCenterNotificationConfig(),
1685+
"google_scc_project_custom_module": securitycenter.ResourceSecurityCenterProjectCustomModule(),
16851686
"google_scc_source": securitycenter.ResourceSecurityCenterSource(),
16861687
"google_scc_source_iam_binding": tpgiamresource.ResourceIamBinding(securitycenter.SecurityCenterSourceIamSchema, securitycenter.SecurityCenterSourceIamUpdaterProducer, securitycenter.SecurityCenterSourceIdParseFunc),
16871688
"google_scc_source_iam_member": tpgiamresource.ResourceIamMember(securitycenter.SecurityCenterSourceIamSchema, securitycenter.SecurityCenterSourceIamUpdaterProducer, securitycenter.SecurityCenterSourceIdParseFunc),

0 commit comments

Comments
 (0)