@@ -71,6 +71,10 @@ resource "google_gkeonprem_vmware_admin_cluster" "admin-cluster-basic" {
71
71
snat_pool = "test-snat-pool"
72
72
}
73
73
}
74
+ private_registry_config {
75
+ address = "test-address"
76
+ ca_cert = "test-ca-cert"
77
+ }
74
78
}
75
79
```
76
80
## Example Usage - Gkeonprem Vmware Admin Cluster Full
@@ -164,6 +168,10 @@ resource "google_gkeonprem_vmware_admin_cluster" "admin-cluster-full" {
164
168
platform_config {
165
169
required_platform_version = "1.31.0"
166
170
}
171
+ private_registry_config {
172
+ address = "test-address"
173
+ ca_cert = "test-ca-cert"
174
+ }
167
175
}
168
176
```
169
177
## Example Usage - Gkeonprem Vmware Admin Cluster Metallb
@@ -208,6 +216,10 @@ resource "google_gkeonprem_vmware_admin_cluster" "admin-cluster-metallb" {
208
216
enabled = true
209
217
}
210
218
}
219
+ private_registry_config {
220
+ address = "test-address"
221
+ ca_cert = "test-ca-cert"
222
+ }
211
223
}
212
224
```
213
225
@@ -431,6 +443,11 @@ The following arguments are supported:
431
443
The VMware platform configuration.
432
444
Structure is [ documented below] ( #nested_platform_config ) .
433
445
446
+ * ` private_registry_config ` -
447
+ (Optional)
448
+ Configuration for private registry.
449
+ Structure is [ documented below] ( #nested_private_registry_config ) .
450
+
434
451
* ` project ` - (Optional) The ID of the project in which the resource belongs.
435
452
If it is not provided, the provider project is used.
436
453
@@ -727,6 +744,16 @@ The following arguments are supported:
727
744
(Output)
728
745
The lifecycle state of the condition.
729
746
747
+ <a name =" nested_private_registry_config " ></a >The ` private_registry_config ` block supports:
748
+
749
+ * ` address ` -
750
+ (Optional)
751
+ The registry address.
752
+
753
+ * ` ca_cert ` -
754
+ (Optional)
755
+ The CA certificate public key for private registry.
756
+
730
757
## Attributes Reference
731
758
732
759
In addition to the arguments listed above, the following computed attributes are exported:
0 commit comments