You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MarkdownDescription: "The name of the cluster. Must not be longer than 30 characters.",
314
315
PlanModifiers: []planmodifier.String{
315
316
stringplanmodifier.RequiresReplace(),
316
317
},
317
318
},
318
319
"zone": schema.StringAttribute{
319
-
Required: true,
320
+
Required: true,
321
+
MarkdownDescription: "The Availability Zone in which the cluster is located.",
320
322
PlanModifiers: []planmodifier.String{
321
323
stringplanmodifier.RequiresReplace(),
322
324
},
323
325
},
324
-
"name": schema.StringAttribute{
325
-
Required: true,
326
+
"vpc_id": schema.StringAttribute{
327
+
Required: true,
328
+
MarkdownDescription: "The ID of the VPC in which the cluster is located. Must be a VPC in the same Availability Zone as the cluster.",
326
329
PlanModifiers: []planmodifier.String{
327
330
stringplanmodifier.RequiresReplace(),
328
331
},
329
332
},
330
-
"version": schema.StringAttribute{
331
-
Required: true,
332
-
},
333
333
"public": schema.BoolAttribute{
334
-
Optional: true,
335
-
Computed: true,
336
-
Default: booldefault.StaticBool(false),
334
+
Optional: true,
335
+
Computed: true,
336
+
MarkdownDescription: "Whether the cluster's api-server is publicly accessible from the internet.",
337
+
Default: booldefault.StaticBool(false),
338
+
},
339
+
"version": schema.StringAttribute{
340
+
Required: true,
341
+
MarkdownDescription: "The version of Kubernetes to run on the cluster, in minor version format (e.g. 'v1.32'). Patch versions are automatically applied by CKS as they are released.",
337
342
},
338
343
"pod_cidr_name": schema.StringAttribute{
339
-
Required: true,
344
+
Required: true,
345
+
MarkdownDescription: "The name of the vpc prefix to use as the pod CIDR range. The prefix must exist in the cluster's VPC.",
340
346
PlanModifiers: []planmodifier.String{
341
347
stringplanmodifier.RequiresReplace(),
342
348
},
343
349
},
344
350
"service_cidr_name": schema.StringAttribute{
345
-
Required: true,
351
+
Required: true,
352
+
MarkdownDescription: "The name of the vpc prefix to use as the service CIDR range. The prefix must exist in the cluster's VPC.",
346
353
PlanModifiers: []planmodifier.String{
347
354
stringplanmodifier.RequiresReplace(),
348
355
},
349
356
},
350
357
"internal_lb_cidr_names": schema.SetAttribute{
351
-
ElementType: types.StringType,
352
-
Required: true,
358
+
ElementType: types.StringType,
359
+
Required: true,
360
+
MarkdownDescription: "The names of the vpc prefixes to use as internal load balancer CIDR ranges. Internal load balancers are reachable within the VPC but not accessible from the internet.\nThe prefixes must exist in the cluster's VPC. This field is append-only.",
0 commit comments