@@ -237,6 +237,14 @@ func Provider() *schema.Provider {
237
237
"GOOGLE_BINARY_AUTHORIZATION_CUSTOM_ENDPOINT" ,
238
238
}, DefaultBasePaths [BinaryAuthorizationBasePathKey ]),
239
239
},
240
+ "certificate_manager_custom_endpoint" : {
241
+ Type : schema .TypeString ,
242
+ Optional : true ,
243
+ ValidateFunc : validateCustomEndpoint ,
244
+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
245
+ "GOOGLE_CERTIFICATE_MANAGER_CUSTOM_ENDPOINT" ,
246
+ }, DefaultBasePaths [CertificateManagerBasePathKey ]),
247
+ },
240
248
"cloud_asset_custom_endpoint" : {
241
249
Type : schema .TypeString ,
242
250
Optional : true ,
@@ -831,9 +839,9 @@ func Provider() *schema.Provider {
831
839
return provider
832
840
}
833
841
834
- // Generated resources: 217
842
+ // Generated resources: 219
835
843
// Generated IAM resources: 108
836
- // Total generated resources: 325
844
+ // Total generated resources: 327
837
845
func ResourceMap () map [string ]* schema.Resource {
838
846
resourceMap , _ := ResourceMapWithErrors ()
839
847
return resourceMap
@@ -891,6 +899,8 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
891
899
"google_binary_authorization_attestor_iam_member" : ResourceIamMember (BinaryAuthorizationAttestorIamSchema , BinaryAuthorizationAttestorIamUpdaterProducer , BinaryAuthorizationAttestorIdParseFunc ),
892
900
"google_binary_authorization_attestor_iam_policy" : ResourceIamPolicy (BinaryAuthorizationAttestorIamSchema , BinaryAuthorizationAttestorIamUpdaterProducer , BinaryAuthorizationAttestorIdParseFunc ),
893
901
"google_binary_authorization_policy" : resourceBinaryAuthorizationPolicy (),
902
+ "google_certificate_manager_dns_authorization" : resourceCertificateManagerDnsAuthorization (),
903
+ "google_certificate_manager_certificate" : resourceCertificateManagerCertificate (),
894
904
"google_cloud_asset_project_feed" : resourceCloudAssetProjectFeed (),
895
905
"google_cloud_asset_folder_feed" : resourceCloudAssetFolderFeed (),
896
906
"google_cloud_asset_organization_feed" : resourceCloudAssetOrganizationFeed (),
@@ -1423,6 +1433,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData, p *schema.Pr
1423
1433
config .BigtableBasePath = d .Get ("bigtable_custom_endpoint" ).(string )
1424
1434
config .BillingBasePath = d .Get ("billing_custom_endpoint" ).(string )
1425
1435
config .BinaryAuthorizationBasePath = d .Get ("binary_authorization_custom_endpoint" ).(string )
1436
+ config .CertificateManagerBasePath = d .Get ("certificate_manager_custom_endpoint" ).(string )
1426
1437
config .CloudAssetBasePath = d .Get ("cloud_asset_custom_endpoint" ).(string )
1427
1438
config .CloudBuildBasePath = d .Get ("cloud_build_custom_endpoint" ).(string )
1428
1439
config .CloudFunctionsBasePath = d .Get ("cloud_functions_custom_endpoint" ).(string )
0 commit comments