@@ -85,6 +85,15 @@ var PrivatecaEndpointEntry = &schema.Schema{
85
85
}, "" ),
86
86
}
87
87
88
+ var RecaptchaEnterpriseEndpointEntryKey = "recaptcha_enterprise_custom_endpoint"
89
+ var RecaptchaEnterpriseEndpointEntry = & schema.Schema {
90
+ Type : schema .TypeString ,
91
+ Optional : true ,
92
+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
93
+ "GOOGLE_RECAPTCHA_ENTERPRISE_CUSTOM_ENDPOINT" ,
94
+ }, "" ),
95
+ }
96
+
88
97
//Add new values to config.go.erb config object declaration
89
98
//AssuredWorkloadsBasePath string
90
99
//CloudBuildWorkerPoolBasePath string
@@ -93,6 +102,7 @@ var PrivatecaEndpointEntry = &schema.Schema{
93
102
//EventarcBasePath string
94
103
//OrgPolicyBasePath string
95
104
//PrivatecaBasePath string
105
+ //RecaptchaEnterpriseBasePath string
96
106
97
107
//Add new values to provider.go.erb schema initialization
98
108
// AssuredWorkloadsEndpointEntryKey: AssuredWorkloadsEndpointEntry,
@@ -102,6 +112,7 @@ var PrivatecaEndpointEntry = &schema.Schema{
102
112
// EventarcEndpointEntryKey: EventarcEndpointEntry,
103
113
// OrgPolicyEndpointEntryKey: OrgPolicyEndpointEntry,
104
114
// PrivatecaEndpointEntryKey: PrivatecaEndpointEntry,
115
+ // RecaptchaEnterpriseEndpointEntryKey: RecaptchaEnterpriseEndpointEntry,
105
116
106
117
//Add new values to provider.go.erb - provider block read
107
118
// config.AssuredWorkloadsBasePath = d.Get(AssuredWorkloadsEndpointEntryKey).(string)
@@ -111,3 +122,4 @@ var PrivatecaEndpointEntry = &schema.Schema{
111
122
// config.EventarcBasePath = d.Get(EventarcEndpointEntryKey).(string)
112
123
// config.OrgPolicyBasePath = d.Get(OrgPolicyEndpointEntryKey).(string)
113
124
// config.PrivatecaBasePath = d.Get(PrivatecaEndpointEntryKey).(string)
125
+ // config.RecaptchaEnterpriseBasePath = d.Get(RecaptchaEnterpriseEndpointEntryKey).(string)
0 commit comments