@pulumi/eks 2.7.0-alpha.1717602819 → 2.7.0-alpha.1717629211
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/cmd/provider/schema.json +60 -0
- package/package.json +1 -1
- package/package.json.dev +1 -1
package/cmd/provider/schema.json
CHANGED
|
@@ -255,10 +255,30 @@
|
|
|
255
255
|
"type": "string",
|
|
256
256
|
"description": "Public key material for SSH access to worker nodes. See allowed formats at:\nhttps://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html\nIf not provided, no SSH access is enabled on VMs."
|
|
257
257
|
},
|
|
258
|
+
"nodeRootVolumeDeleteOnTermination": {
|
|
259
|
+
"type": "boolean",
|
|
260
|
+
"description": "Whether the root block device should be deleted on termination of the instance. Defaults to true."
|
|
261
|
+
},
|
|
262
|
+
"nodeRootVolumeEncrypted": {
|
|
263
|
+
"type": "boolean",
|
|
264
|
+
"description": "Whether to encrypt a cluster node's root volume. Defaults to false."
|
|
265
|
+
},
|
|
266
|
+
"nodeRootVolumeIops": {
|
|
267
|
+
"type": "integer",
|
|
268
|
+
"description": "The amount of provisioned IOPS. This is only valid with a volumeType of 'io1'."
|
|
269
|
+
},
|
|
258
270
|
"nodeRootVolumeSize": {
|
|
259
271
|
"type": "integer",
|
|
260
272
|
"description": "The size in GiB of a cluster node's root volume. Defaults to 20."
|
|
261
273
|
},
|
|
274
|
+
"nodeRootVolumeThroughput": {
|
|
275
|
+
"type": "integer",
|
|
276
|
+
"description": "Provisioned throughput performance in integer MiB/s for a cluster node's root volume. This is only valid with a volumeType of 'gp3'."
|
|
277
|
+
},
|
|
278
|
+
"nodeRootVolumeType": {
|
|
279
|
+
"type": "string",
|
|
280
|
+
"description": "Configured EBS type for a cluster node's root volume. Default is 'gp2'. Supported values are 'standard', 'gp2', 'gp3', 'st1', 'sc1', 'io1'."
|
|
281
|
+
},
|
|
262
282
|
"nodeSecurityGroup": {
|
|
263
283
|
"$ref": "/aws/v6.18.2/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
|
|
264
284
|
"description": "The security group for the worker node group to communicate with the cluster.\n\nThis security group requires specific inbound and outbound rules.\n\nSee for more details:\nhttps://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\n\nNote: The `nodeSecurityGroup` option and the cluster option`nodeSecurityGroupTags` are mutually exclusive."
|
|
@@ -1425,10 +1445,30 @@
|
|
|
1425
1445
|
"type": "string",
|
|
1426
1446
|
"description": "Public key material for SSH access to worker nodes. See allowed formats at:\nhttps://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html\nIf not provided, no SSH access is enabled on VMs."
|
|
1427
1447
|
},
|
|
1448
|
+
"nodeRootVolumeDeleteOnTermination": {
|
|
1449
|
+
"type": "boolean",
|
|
1450
|
+
"description": "Whether the root block device should be deleted on termination of the instance. Defaults to true."
|
|
1451
|
+
},
|
|
1452
|
+
"nodeRootVolumeEncrypted": {
|
|
1453
|
+
"type": "boolean",
|
|
1454
|
+
"description": "Whether to encrypt a cluster node's root volume. Defaults to false."
|
|
1455
|
+
},
|
|
1456
|
+
"nodeRootVolumeIops": {
|
|
1457
|
+
"type": "integer",
|
|
1458
|
+
"description": "The amount of provisioned IOPS. This is only valid with a volumeType of 'io1'."
|
|
1459
|
+
},
|
|
1428
1460
|
"nodeRootVolumeSize": {
|
|
1429
1461
|
"type": "integer",
|
|
1430
1462
|
"description": "The size in GiB of a cluster node's root volume. Defaults to 20."
|
|
1431
1463
|
},
|
|
1464
|
+
"nodeRootVolumeThroughput": {
|
|
1465
|
+
"type": "integer",
|
|
1466
|
+
"description": "Provisioned throughput performance in integer MiB/s for a cluster node's root volume. This is only valid with a volumeType of 'gp3'."
|
|
1467
|
+
},
|
|
1468
|
+
"nodeRootVolumeType": {
|
|
1469
|
+
"type": "string",
|
|
1470
|
+
"description": "Configured EBS type for a cluster node's root volume. Default is 'gp2'. Supported values are 'standard', 'gp2', 'gp3', 'st1', 'sc1', 'io1'."
|
|
1471
|
+
},
|
|
1432
1472
|
"nodeSecurityGroup": {
|
|
1433
1473
|
"$ref": "/aws/v6.18.2/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
|
|
1434
1474
|
"description": "The security group for the worker node group to communicate with the cluster.\n\nThis security group requires specific inbound and outbound rules.\n\nSee for more details:\nhttps://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\n\nNote: The `nodeSecurityGroup` option and the cluster option`nodeSecurityGroupTags` are mutually exclusive."
|
|
@@ -1660,10 +1700,30 @@
|
|
|
1660
1700
|
"type": "string",
|
|
1661
1701
|
"description": "Public key material for SSH access to worker nodes. See allowed formats at:\nhttps://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html\nIf not provided, no SSH access is enabled on VMs."
|
|
1662
1702
|
},
|
|
1703
|
+
"nodeRootVolumeDeleteOnTermination": {
|
|
1704
|
+
"type": "boolean",
|
|
1705
|
+
"description": "Whether the root block device should be deleted on termination of the instance. Defaults to true."
|
|
1706
|
+
},
|
|
1707
|
+
"nodeRootVolumeEncrypted": {
|
|
1708
|
+
"type": "boolean",
|
|
1709
|
+
"description": "Whether to encrypt a cluster node's root volume. Defaults to false."
|
|
1710
|
+
},
|
|
1711
|
+
"nodeRootVolumeIops": {
|
|
1712
|
+
"type": "integer",
|
|
1713
|
+
"description": "The amount of provisioned IOPS. This is only valid with a volumeType of 'io1'."
|
|
1714
|
+
},
|
|
1663
1715
|
"nodeRootVolumeSize": {
|
|
1664
1716
|
"type": "integer",
|
|
1665
1717
|
"description": "The size in GiB of a cluster node's root volume. Defaults to 20."
|
|
1666
1718
|
},
|
|
1719
|
+
"nodeRootVolumeThroughput": {
|
|
1720
|
+
"type": "integer",
|
|
1721
|
+
"description": "Provisioned throughput performance in integer MiB/s for a cluster node's root volume. This is only valid with a volumeType of 'gp3'."
|
|
1722
|
+
},
|
|
1723
|
+
"nodeRootVolumeType": {
|
|
1724
|
+
"type": "string",
|
|
1725
|
+
"description": "Configured EBS type for a cluster node's root volume. Default is 'gp2'. Supported values are 'standard', 'gp2', 'gp3', 'st1', 'sc1', 'io1'."
|
|
1726
|
+
},
|
|
1667
1727
|
"nodeSecurityGroup": {
|
|
1668
1728
|
"$ref": "/aws/v6.18.2/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
|
|
1669
1729
|
"description": "The security group for the worker node group to communicate with the cluster.\n\nThis security group requires specific inbound and outbound rules.\n\nSee for more details:\nhttps://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html\n\nNote: The `nodeSecurityGroup` option and the cluster option`nodeSecurityGroupTags` are mutually exclusive."
|
package/package.json
CHANGED
package/package.json.dev
CHANGED