@@ -85,6 +85,15 @@ var EventarcEndpointEntry = &schema.Schema{
85
85
}, "" ),
86
86
}
87
87
88
+ var NetworkConnectivityEndpointEntryKey = "network_connectivity_custom_endpoint"
89
+ var NetworkConnectivityEndpointEntry = & schema.Schema {
90
+ Type : schema .TypeString ,
91
+ Optional : true ,
92
+ DefaultFunc : schema .MultiEnvDefaultFunc ([]string {
93
+ "GOOGLE_NETWORK_CONNECTIVITY_CUSTOM_ENDPOINT" ,
94
+ }, "" ),
95
+ }
96
+
88
97
var OrgPolicyEndpointEntryKey = "org_policy_custom_endpoint"
89
98
var OrgPolicyEndpointEntry = & schema.Schema {
90
99
Type : schema .TypeString ,
@@ -129,6 +138,7 @@ var RecaptchaEnterpriseEndpointEntry = &schema.Schema{
129
138
//ContainerAwsBasePath string
130
139
//ContainerAzureBasePath string
131
140
//EventarcBasePath string
141
+ //NetworkConnectivityBasePath string
132
142
//OrgPolicyBasePath string
133
143
//OSConfigBasePath string
134
144
//PrivatecaBasePath string
@@ -142,6 +152,7 @@ var RecaptchaEnterpriseEndpointEntry = &schema.Schema{
142
152
// ContainerAwsEndpointEntryKey: ContainerAwsEndpointEntry,
143
153
// ContainerAzureEndpointEntryKey: ContainerAzureEndpointEntry,
144
154
// EventarcEndpointEntryKey: EventarcEndpointEntry,
155
+ // NetworkConnectivityEndpointEntryKey: NetworkConnectivityEndpointEntry,
145
156
// OrgPolicyEndpointEntryKey: OrgPolicyEndpointEntry,
146
157
// OSConfigEndpointEntryKey: OSConfigEndpointEntry,
147
158
// PrivatecaEndpointEntryKey: PrivatecaEndpointEntry,
@@ -155,6 +166,7 @@ var RecaptchaEnterpriseEndpointEntry = &schema.Schema{
155
166
// config.ContainerAwsBasePath = d.Get(ContainerAwsEndpointEntryKey).(string)
156
167
// config.ContainerAzureBasePath = d.Get(ContainerAzureEndpointEntryKey).(string)
157
168
// config.EventarcBasePath = d.Get(EventarcEndpointEntryKey).(string)
169
+ // config.NetworkConnectivityBasePath = d.Get(NetworkConnectivityEndpointEntryKey).(string)
158
170
// config.OrgPolicyBasePath = d.Get(OrgPolicyEndpointEntryKey).(string)
159
171
// config.OSConfigBasePath = d.Get(OSConfigEndpointEntryKey).(string)
160
172
// config.PrivatecaBasePath = d.Get(PrivatecaEndpointEntryKey).(string)
0 commit comments