@@ -127,6 +127,14 @@ func Provider() terraform.ResourceProvider {
127
127
"GOOGLE_BIGQUERY_DATA_TRANSFER_CUSTOM_ENDPOINT" ,
128
128
}, BigqueryDataTransferDefaultBasePath ),
129
129
},
130
+ "bigtable_custom_endpoint" : {
131
+ Type : schema .TypeString ,
132
+ Optional : true ,
133
+ ValidateFunc : validateCustomEndpoint ,
134
+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
135
+ "GOOGLE_BIGTABLE_CUSTOM_ENDPOINT" ,
136
+ }, BigtableDefaultBasePath ),
137
+ },
130
138
"binary_authorization_custom_endpoint" : {
131
139
Type : schema .TypeString ,
132
140
Optional : true ,
@@ -365,9 +373,9 @@ func Provider() terraform.ResourceProvider {
365
373
}
366
374
}
367
375
368
- // Generated resources: 69
376
+ // Generated resources: 70
369
377
// Generated IAM resources: 6
370
- // Total generated resources: 75
378
+ // Total generated resources: 76
371
379
func ResourceMap () map [string ]* schema.Resource {
372
380
resourceMap , _ := ResourceMapWithErrors ()
373
381
return resourceMap
@@ -381,6 +389,7 @@ func ResourceMapWithErrors() (map[string]*schema.Resource, error) {
381
389
"google_access_context_manager_service_perimeter" : resourceAccessContextManagerServicePerimeter (),
382
390
"google_app_engine_firewall_rule" : resourceAppEngineFirewallRule (),
383
391
"google_bigquery_data_transfer_config" : resourceBigqueryDataTransferConfig (),
392
+ "google_bigtable_app_profile" : resourceBigtableAppProfile (),
384
393
"google_binary_authorization_attestor" : resourceBinaryAuthorizationAttestor (),
385
394
"google_binary_authorization_policy" : resourceBinaryAuthorizationPolicy (),
386
395
"google_cloudbuild_trigger" : resourceCloudBuildTrigger (),
@@ -607,6 +616,7 @@ func providerConfigure(d *schema.ResourceData) (interface{}, error) {
607
616
config .AccessContextManagerBasePath = d .Get ("access_context_manager_custom_endpoint" ).(string )
608
617
config .AppEngineBasePath = d .Get ("app_engine_custom_endpoint" ).(string )
609
618
config .BigqueryDataTransferBasePath = d .Get ("bigquery_data_transfer_custom_endpoint" ).(string )
619
+ config .BigtableBasePath = d .Get ("bigtable_custom_endpoint" ).(string )
610
620
config .BinaryAuthorizationBasePath = d .Get ("binary_authorization_custom_endpoint" ).(string )
611
621
config .CloudBuildBasePath = d .Get ("cloud_build_custom_endpoint" ).(string )
612
622
config .CloudSchedulerBasePath = d .Get ("cloud_scheduler_custom_endpoint" ).(string )
@@ -666,6 +676,7 @@ func ConfigureBasePaths(c *Config) {
666
676
c .AccessContextManagerBasePath = AccessContextManagerDefaultBasePath
667
677
c .AppEngineBasePath = AppEngineDefaultBasePath
668
678
c .BigqueryDataTransferBasePath = BigqueryDataTransferDefaultBasePath
679
+ c .BigtableBasePath = BigtableDefaultBasePath
669
680
c .BinaryAuthorizationBasePath = BinaryAuthorizationDefaultBasePath
670
681
c .CloudBuildBasePath = CloudBuildDefaultBasePath
671
682
c .CloudSchedulerBasePath = CloudSchedulerDefaultBasePath
0 commit comments