@pulumi/linode 5.2.0 → 5.3.0-alpha.1757561362
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getLkeCluster.d.ts +12 -0
- package/getLkeCluster.js.map +1 -1
- package/lkeCluster.d.ts +36 -0
- package/lkeCluster.js +6 -0
- package/lkeCluster.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +45 -1
- package/types/output.d.ts +25 -1
package/getLkeCluster.d.ts
CHANGED
|
@@ -82,10 +82,18 @@ export interface GetLkeClusterResult {
|
|
|
82
82
|
* This Kubernetes cluster's location.
|
|
83
83
|
*/
|
|
84
84
|
readonly region: string;
|
|
85
|
+
/**
|
|
86
|
+
* The networking stack type of the Kubernetes cluster.
|
|
87
|
+
*/
|
|
88
|
+
readonly stackType: string;
|
|
85
89
|
/**
|
|
86
90
|
* The status of the node. (`ready`, `notReady`)
|
|
87
91
|
*/
|
|
88
92
|
readonly status: string;
|
|
93
|
+
/**
|
|
94
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
95
|
+
*/
|
|
96
|
+
readonly subnetId: number;
|
|
89
97
|
/**
|
|
90
98
|
* An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
91
99
|
*/
|
|
@@ -98,6 +106,10 @@ export interface GetLkeClusterResult {
|
|
|
98
106
|
* When this Kubernetes cluster was updated.
|
|
99
107
|
*/
|
|
100
108
|
readonly updated: string;
|
|
109
|
+
/**
|
|
110
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
111
|
+
*/
|
|
112
|
+
readonly vpcId: number;
|
|
101
113
|
}
|
|
102
114
|
/**
|
|
103
115
|
* Provides details about an LKE Cluster.
|
package/getLkeCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLkeCluster.js","sourceRoot":"","sources":["../getLkeCluster.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;
|
|
1
|
+
{"version":3,"file":"getLkeCluster.js","sourceRoot":"","sources":["../getLkeCluster.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;AAiGD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC"}
|
package/lkeCluster.d.ts
CHANGED
|
@@ -70,10 +70,18 @@ export declare class LkeCluster extends pulumi.CustomResource {
|
|
|
70
70
|
* * `controlPlane` (Optional) Defines settings for the Kubernetes Control Plane.
|
|
71
71
|
*/
|
|
72
72
|
readonly region: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* The networking stack type of the Kubernetes cluster.
|
|
75
|
+
*/
|
|
76
|
+
readonly stackType: pulumi.Output<string>;
|
|
73
77
|
/**
|
|
74
78
|
* The status of the node. (`ready`, `notReady`)
|
|
75
79
|
*/
|
|
76
80
|
readonly status: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
83
|
+
*/
|
|
84
|
+
readonly subnetId: pulumi.Output<number>;
|
|
77
85
|
/**
|
|
78
86
|
* An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
79
87
|
*/
|
|
@@ -82,6 +90,10 @@ export declare class LkeCluster extends pulumi.CustomResource {
|
|
|
82
90
|
* The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
83
91
|
*/
|
|
84
92
|
readonly tier: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
95
|
+
*/
|
|
96
|
+
readonly vpcId: pulumi.Output<number>;
|
|
85
97
|
/**
|
|
86
98
|
* Create a LkeCluster resource with the given unique name, arguments, and options.
|
|
87
99
|
*
|
|
@@ -139,10 +151,18 @@ export interface LkeClusterState {
|
|
|
139
151
|
* * `controlPlane` (Optional) Defines settings for the Kubernetes Control Plane.
|
|
140
152
|
*/
|
|
141
153
|
region?: pulumi.Input<string>;
|
|
154
|
+
/**
|
|
155
|
+
* The networking stack type of the Kubernetes cluster.
|
|
156
|
+
*/
|
|
157
|
+
stackType?: pulumi.Input<string>;
|
|
142
158
|
/**
|
|
143
159
|
* The status of the node. (`ready`, `notReady`)
|
|
144
160
|
*/
|
|
145
161
|
status?: pulumi.Input<string>;
|
|
162
|
+
/**
|
|
163
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
164
|
+
*/
|
|
165
|
+
subnetId?: pulumi.Input<number>;
|
|
146
166
|
/**
|
|
147
167
|
* An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
148
168
|
*/
|
|
@@ -151,6 +171,10 @@ export interface LkeClusterState {
|
|
|
151
171
|
* The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
152
172
|
*/
|
|
153
173
|
tier?: pulumi.Input<string>;
|
|
174
|
+
/**
|
|
175
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
176
|
+
*/
|
|
177
|
+
vpcId?: pulumi.Input<number>;
|
|
154
178
|
}
|
|
155
179
|
/**
|
|
156
180
|
* The set of arguments for constructing a LkeCluster resource.
|
|
@@ -188,6 +212,14 @@ export interface LkeClusterArgs {
|
|
|
188
212
|
* * `controlPlane` (Optional) Defines settings for the Kubernetes Control Plane.
|
|
189
213
|
*/
|
|
190
214
|
region: pulumi.Input<string>;
|
|
215
|
+
/**
|
|
216
|
+
* The networking stack type of the Kubernetes cluster.
|
|
217
|
+
*/
|
|
218
|
+
stackType?: pulumi.Input<string>;
|
|
219
|
+
/**
|
|
220
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled). (**Note: v4beta only and may not currently be available to all users.**)
|
|
221
|
+
*/
|
|
222
|
+
subnetId?: pulumi.Input<number>;
|
|
191
223
|
/**
|
|
192
224
|
* An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
193
225
|
*/
|
|
@@ -196,4 +228,8 @@ export interface LkeClusterArgs {
|
|
|
196
228
|
* The desired Kubernetes tier. (**Note: v4beta only and may not currently be available to all users.**)
|
|
197
229
|
*/
|
|
198
230
|
tier?: pulumi.Input<string>;
|
|
231
|
+
/**
|
|
232
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
233
|
+
*/
|
|
234
|
+
vpcId?: pulumi.Input<number>;
|
|
199
235
|
}
|
package/lkeCluster.js
CHANGED
|
@@ -52,9 +52,12 @@ class LkeCluster extends pulumi.CustomResource {
|
|
|
52
52
|
resourceInputs["label"] = state?.label;
|
|
53
53
|
resourceInputs["pools"] = state?.pools;
|
|
54
54
|
resourceInputs["region"] = state?.region;
|
|
55
|
+
resourceInputs["stackType"] = state?.stackType;
|
|
55
56
|
resourceInputs["status"] = state?.status;
|
|
57
|
+
resourceInputs["subnetId"] = state?.subnetId;
|
|
56
58
|
resourceInputs["tags"] = state?.tags;
|
|
57
59
|
resourceInputs["tier"] = state?.tier;
|
|
60
|
+
resourceInputs["vpcId"] = state?.vpcId;
|
|
58
61
|
}
|
|
59
62
|
else {
|
|
60
63
|
const args = argsOrState;
|
|
@@ -77,8 +80,11 @@ class LkeCluster extends pulumi.CustomResource {
|
|
|
77
80
|
resourceInputs["label"] = args?.label;
|
|
78
81
|
resourceInputs["pools"] = args?.pools;
|
|
79
82
|
resourceInputs["region"] = args?.region;
|
|
83
|
+
resourceInputs["stackType"] = args?.stackType;
|
|
84
|
+
resourceInputs["subnetId"] = args?.subnetId;
|
|
80
85
|
resourceInputs["tags"] = args?.tags;
|
|
81
86
|
resourceInputs["tier"] = args?.tier;
|
|
87
|
+
resourceInputs["vpcId"] = args?.vpcId;
|
|
82
88
|
resourceInputs["apiEndpoints"] = undefined /*out*/;
|
|
83
89
|
resourceInputs["dashboardUrl"] = undefined /*out*/;
|
|
84
90
|
resourceInputs["kubeconfig"] = undefined /*out*/;
|
package/lkeCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lkeCluster.js","sourceRoot":"","sources":["../lkeCluster.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IACjD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;
|
|
1
|
+
{"version":3,"file":"lkeCluster.js","sourceRoot":"","sources":["../lkeCluster.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/linode",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0-alpha.1757561362",
|
|
4
4
|
"description": "A Pulumi package for creating and managing linode cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "linode",
|
|
26
|
-
"version": "5.
|
|
26
|
+
"version": "5.3.0-alpha.1757561362"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1839,6 +1839,10 @@ export interface GetLkeClusterControlPlane {
|
|
|
1839
1839
|
* The ACL configuration for an LKE cluster's control plane.
|
|
1840
1840
|
*/
|
|
1841
1841
|
acls?: inputs.GetLkeClusterControlPlaneAcl[];
|
|
1842
|
+
/**
|
|
1843
|
+
* Enables audit logs on the cluster's control plane.
|
|
1844
|
+
*/
|
|
1845
|
+
auditLogsEnabled?: boolean;
|
|
1842
1846
|
/**
|
|
1843
1847
|
* Whether High Availability is enabled for the cluster Control Plane.
|
|
1844
1848
|
*/
|
|
@@ -1849,6 +1853,10 @@ export interface GetLkeClusterControlPlaneArgs {
|
|
|
1849
1853
|
* The ACL configuration for an LKE cluster's control plane.
|
|
1850
1854
|
*/
|
|
1851
1855
|
acls?: pulumi.Input<pulumi.Input<inputs.GetLkeClusterControlPlaneAclArgs>[]>;
|
|
1856
|
+
/**
|
|
1857
|
+
* Enables audit logs on the cluster's control plane.
|
|
1858
|
+
*/
|
|
1859
|
+
auditLogsEnabled?: pulumi.Input<boolean>;
|
|
1852
1860
|
/**
|
|
1853
1861
|
* Whether High Availability is enabled for the cluster Control Plane.
|
|
1854
1862
|
*/
|
|
@@ -2167,10 +2175,18 @@ export interface GetLkeClustersLkeCluster {
|
|
|
2167
2175
|
* This Kubernetes cluster's location.
|
|
2168
2176
|
*/
|
|
2169
2177
|
region?: string;
|
|
2178
|
+
/**
|
|
2179
|
+
* The networking stack type of the Kubernetes cluster.
|
|
2180
|
+
*/
|
|
2181
|
+
stackType?: string;
|
|
2170
2182
|
/**
|
|
2171
2183
|
* The status of the cluster.
|
|
2172
2184
|
*/
|
|
2173
2185
|
status?: string;
|
|
2186
|
+
/**
|
|
2187
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
2188
|
+
*/
|
|
2189
|
+
subnetId?: number;
|
|
2174
2190
|
/**
|
|
2175
2191
|
* An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
2176
2192
|
*/
|
|
@@ -2183,6 +2199,10 @@ export interface GetLkeClustersLkeCluster {
|
|
|
2183
2199
|
* When this Kubernetes cluster was updated.
|
|
2184
2200
|
*/
|
|
2185
2201
|
updated?: string;
|
|
2202
|
+
/**
|
|
2203
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
2204
|
+
*/
|
|
2205
|
+
vpcId?: number;
|
|
2186
2206
|
}
|
|
2187
2207
|
export interface GetLkeClustersLkeClusterArgs {
|
|
2188
2208
|
/**
|
|
@@ -2213,10 +2233,18 @@ export interface GetLkeClustersLkeClusterArgs {
|
|
|
2213
2233
|
* This Kubernetes cluster's location.
|
|
2214
2234
|
*/
|
|
2215
2235
|
region?: pulumi.Input<string>;
|
|
2236
|
+
/**
|
|
2237
|
+
* The networking stack type of the Kubernetes cluster.
|
|
2238
|
+
*/
|
|
2239
|
+
stackType?: pulumi.Input<string>;
|
|
2216
2240
|
/**
|
|
2217
2241
|
* The status of the cluster.
|
|
2218
2242
|
*/
|
|
2219
2243
|
status?: pulumi.Input<string>;
|
|
2244
|
+
/**
|
|
2245
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
2246
|
+
*/
|
|
2247
|
+
subnetId?: pulumi.Input<number>;
|
|
2220
2248
|
/**
|
|
2221
2249
|
* An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
2222
2250
|
*/
|
|
@@ -2229,14 +2257,26 @@ export interface GetLkeClustersLkeClusterArgs {
|
|
|
2229
2257
|
* When this Kubernetes cluster was updated.
|
|
2230
2258
|
*/
|
|
2231
2259
|
updated?: pulumi.Input<string>;
|
|
2260
|
+
/**
|
|
2261
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
2262
|
+
*/
|
|
2263
|
+
vpcId?: pulumi.Input<number>;
|
|
2232
2264
|
}
|
|
2233
2265
|
export interface GetLkeClustersLkeClusterControlPlane {
|
|
2266
|
+
/**
|
|
2267
|
+
* Enables audit logs on the cluster's control plane.
|
|
2268
|
+
*/
|
|
2269
|
+
auditLogsEnabled?: boolean;
|
|
2234
2270
|
/**
|
|
2235
2271
|
* Whether High Availability is enabled for the cluster Control Plane.
|
|
2236
2272
|
*/
|
|
2237
2273
|
highAvailability?: boolean;
|
|
2238
2274
|
}
|
|
2239
2275
|
export interface GetLkeClustersLkeClusterControlPlaneArgs {
|
|
2276
|
+
/**
|
|
2277
|
+
* Enables audit logs on the cluster's control plane.
|
|
2278
|
+
*/
|
|
2279
|
+
auditLogsEnabled?: pulumi.Input<boolean>;
|
|
2240
2280
|
/**
|
|
2241
2281
|
* Whether High Availability is enabled for the cluster Control Plane.
|
|
2242
2282
|
*/
|
|
@@ -6198,10 +6238,14 @@ export interface LkeClusterControlPlane {
|
|
|
6198
6238
|
*/
|
|
6199
6239
|
acl?: pulumi.Input<inputs.LkeClusterControlPlaneAcl>;
|
|
6200
6240
|
/**
|
|
6201
|
-
*
|
|
6241
|
+
* Enables audit logs on the cluster's control plane.
|
|
6202
6242
|
*
|
|
6203
6243
|
* * `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
6204
6244
|
*/
|
|
6245
|
+
auditLogsEnabled?: pulumi.Input<boolean>;
|
|
6246
|
+
/**
|
|
6247
|
+
* Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
6248
|
+
*/
|
|
6205
6249
|
highAvailability?: pulumi.Input<boolean>;
|
|
6206
6250
|
}
|
|
6207
6251
|
export interface LkeClusterControlPlaneAcl {
|
package/types/output.d.ts
CHANGED
|
@@ -2507,6 +2507,10 @@ export interface GetLkeClusterControlPlane {
|
|
|
2507
2507
|
* The ACL configuration for an LKE cluster's control plane.
|
|
2508
2508
|
*/
|
|
2509
2509
|
acls?: outputs.GetLkeClusterControlPlaneAcl[];
|
|
2510
|
+
/**
|
|
2511
|
+
* Enables audit logs on the cluster's control plane.
|
|
2512
|
+
*/
|
|
2513
|
+
auditLogsEnabled: boolean;
|
|
2510
2514
|
/**
|
|
2511
2515
|
* Whether High Availability is enabled for the cluster Control Plane.
|
|
2512
2516
|
*/
|
|
@@ -2683,10 +2687,18 @@ export interface GetLkeClustersLkeCluster {
|
|
|
2683
2687
|
* This Kubernetes cluster's location.
|
|
2684
2688
|
*/
|
|
2685
2689
|
region: string;
|
|
2690
|
+
/**
|
|
2691
|
+
* The networking stack type of the Kubernetes cluster.
|
|
2692
|
+
*/
|
|
2693
|
+
stackType: string;
|
|
2686
2694
|
/**
|
|
2687
2695
|
* The status of the cluster.
|
|
2688
2696
|
*/
|
|
2689
2697
|
status: string;
|
|
2698
|
+
/**
|
|
2699
|
+
* The ID of the VPC subnet to use for the Kubernetes cluster. This subnet must be dual stack (IPv4 and IPv6 should both be enabled).
|
|
2700
|
+
*/
|
|
2701
|
+
subnetId: number;
|
|
2690
2702
|
/**
|
|
2691
2703
|
* An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
|
|
2692
2704
|
*/
|
|
@@ -2699,8 +2711,16 @@ export interface GetLkeClustersLkeCluster {
|
|
|
2699
2711
|
* When this Kubernetes cluster was updated.
|
|
2700
2712
|
*/
|
|
2701
2713
|
updated: string;
|
|
2714
|
+
/**
|
|
2715
|
+
* The ID of the VPC to use for the Kubernetes cluster.
|
|
2716
|
+
*/
|
|
2717
|
+
vpcId: number;
|
|
2702
2718
|
}
|
|
2703
2719
|
export interface GetLkeClustersLkeClusterControlPlane {
|
|
2720
|
+
/**
|
|
2721
|
+
* Enables audit logs on the cluster's control plane.
|
|
2722
|
+
*/
|
|
2723
|
+
auditLogsEnabled: boolean;
|
|
2704
2724
|
/**
|
|
2705
2725
|
* Whether High Availability is enabled for the cluster Control Plane.
|
|
2706
2726
|
*/
|
|
@@ -5122,10 +5142,14 @@ export interface LkeClusterControlPlane {
|
|
|
5122
5142
|
*/
|
|
5123
5143
|
acl: outputs.LkeClusterControlPlaneAcl;
|
|
5124
5144
|
/**
|
|
5125
|
-
*
|
|
5145
|
+
* Enables audit logs on the cluster's control plane.
|
|
5126
5146
|
*
|
|
5127
5147
|
* * `acl` - (Optional) Defines the ACL configuration for an LKE cluster's control plane.
|
|
5128
5148
|
*/
|
|
5149
|
+
auditLogsEnabled: boolean;
|
|
5150
|
+
/**
|
|
5151
|
+
* Defines whether High Availability is enabled for the cluster Control Plane. This is an **irreversible** change.
|
|
5152
|
+
*/
|
|
5129
5153
|
highAvailability: boolean;
|
|
5130
5154
|
}
|
|
5131
5155
|
export interface LkeClusterControlPlaneAcl {
|