@@ -49,6 +49,15 @@ var CloudBuildWorkerPoolEndpointEntry = &schema.Schema{
49
49
}, "" ),
50
50
}
51
51
52
+ var ClouddeployEndpointEntryKey = "clouddeploy_custom_endpoint"
53
+ var ClouddeployEndpointEntry = & schema.Schema {
54
+ Type : schema .TypeString ,
55
+ Optional : true ,
56
+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
57
+ "GOOGLE_CLOUDDEPLOY_CUSTOM_ENDPOINT" ,
58
+ }, "" ),
59
+ }
60
+
52
61
var CloudResourceManagerEndpointEntryKey = "cloud_resource_manager_custom_endpoint"
53
62
var CloudResourceManagerEndpointEntry = & schema.Schema {
54
63
Type : schema .TypeString ,
@@ -161,6 +170,7 @@ var RecaptchaEnterpriseEndpointEntry = &schema.Schema{
161
170
//ApikeysBasePath string
162
171
//AssuredWorkloadsBasePath string
163
172
//CloudBuildWorkerPoolBasePath string
173
+ //ClouddeployBasePath string
164
174
//CloudResourceManagerBasePath string
165
175
//ComputeBasePath string
166
176
//ContainerAwsBasePath string
@@ -178,6 +188,7 @@ var RecaptchaEnterpriseEndpointEntry = &schema.Schema{
178
188
// ApikeysEndpointEntryKey: ApikeysEndpointEntry,
179
189
// AssuredWorkloadsEndpointEntryKey: AssuredWorkloadsEndpointEntry,
180
190
// CloudBuildWorkerPoolEndpointEntryKey: CloudBuildWorkerPoolEndpointEntry,
191
+ // ClouddeployEndpointEntryKey: ClouddeployEndpointEntry,
181
192
// CloudResourceManagerEndpointEntryKey: CloudResourceManagerEndpointEntry,
182
193
// ComputeEndpointEntryKey: ComputeEndpointEntry,
183
194
// ContainerAwsEndpointEntryKey: ContainerAwsEndpointEntry,
@@ -195,6 +206,7 @@ var RecaptchaEnterpriseEndpointEntry = &schema.Schema{
195
206
// config.ApikeysBasePath = d.Get(ApikeysEndpointEntryKey).(string)
196
207
// config.AssuredWorkloadsBasePath = d.Get(AssuredWorkloadsEndpointEntryKey).(string)
197
208
// config.CloudBuildWorkerPoolBasePath = d.Get(CloudBuildWorkerPoolEndpointEntryKey).(string)
209
+ // config.ClouddeployBasePath = d.Get(ClouddeployEndpointEntryKey).(string)
198
210
// config.CloudResourceManagerBasePath = d.Get(CloudResourceManagerEndpointEntryKey).(string)
199
211
// config.ComputeBasePath = d.Get(ComputeEndpointEntryKey).(string)
200
212
// config.ContainerAwsBasePath = d.Get(ContainerAwsEndpointEntryKey).(string)
0 commit comments