@pulumi/eks 1.0.0 → 1.0.2

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.
Files changed (43) hide show
  1. package/README.md +16 -11
  2. package/cert-thumprint.d.ts +11 -11
  3. package/cert-thumprint.js +25 -21
  4. package/cert-thumprint.js.map +1 -1
  5. package/cluster.js +113 -89
  6. package/cluster.js.map +1 -1
  7. package/cmd/provider/cluster.js.map +1 -1
  8. package/cmd/provider/cni.js +99 -36
  9. package/cmd/provider/cni.js.map +1 -1
  10. package/cmd/provider/index.js +6 -10
  11. package/cmd/provider/index.js.map +1 -1
  12. package/cmd/provider/nodegroup.js.map +1 -1
  13. package/cmd/provider/randomSuffix.js +3 -1
  14. package/cmd/provider/randomSuffix.js.map +1 -1
  15. package/cmd/provider/schema.json +85 -85
  16. package/cmd/provider/securitygroup.js.map +1 -1
  17. package/cni/aws-k8s-cni.yaml +195 -196
  18. package/cni.js +3 -1
  19. package/cni.js.map +1 -1
  20. package/dashboard/heapster-rbac.yaml +7 -7
  21. package/dashboard/heapster.yaml +33 -33
  22. package/dashboard/influxdb.yaml +31 -31
  23. package/dashboard/kubernetes-dashboard.yaml +104 -104
  24. package/dashboard.js +5 -3
  25. package/dashboard.js.map +1 -1
  26. package/dependencies.js +16 -6
  27. package/dependencies.js.map +1 -1
  28. package/index.d.ts +2 -2
  29. package/index.js.map +1 -1
  30. package/nodegroup.d.ts +12 -0
  31. package/nodegroup.js +135 -91
  32. package/nodegroup.js.map +1 -1
  33. package/package.json +27 -16
  34. package/package.json.dev +27 -16
  35. package/randomSuffix.js +4 -2
  36. package/randomSuffix.js.map +1 -1
  37. package/securitygroup.js +1 -4
  38. package/securitygroup.js.map +1 -1
  39. package/servicerole.js +10 -8
  40. package/servicerole.js.map +1 -1
  41. package/storageclass.d.ts +16 -16
  42. package/storageclass.js +7 -6
  43. package/storageclass.js.map +1 -1
@@ -9,6 +9,37 @@
9
9
  "homepage": "https://pulumi.com",
10
10
  "license": "Apache-2.0",
11
11
  "repository": "https://github.com/pulumi/pulumi-eks",
12
+ "language": {
13
+ "csharp": {
14
+ "liftSingleValueMethodReturns": true,
15
+ "packageReferences": {
16
+ "Pulumi": "3.*",
17
+ "Pulumi.Aws": "5.*",
18
+ "Pulumi.Kubernetes": "3.*"
19
+ }
20
+ },
21
+ "go": {
22
+ "generateResourceContainerTypes": true,
23
+ "importBasePath": "github.com/pulumi/pulumi-eks/sdk/go/eks",
24
+ "liftSingleValueMethodReturns": true
25
+ },
26
+ "java": {
27
+ "dependencies": {
28
+ "com.pulumi:aws": "5.31.0",
29
+ "com.pulumi:kubernetes": "3.19.1"
30
+ }
31
+ },
32
+ "python": {
33
+ "liftSingleValueMethodReturns": true,
34
+ "readme": "Pulumi Amazon Web Services (AWS) EKS Components.",
35
+ "requires": {
36
+ "pulumi": "\u003e=3.0.0,\u003c4.0.0",
37
+ "pulumi-aws": "\u003e=5.0.0,\u003c6.0.0",
38
+ "pulumi-kubernetes": "\u003e=3.0.0,\u003c4.0.0"
39
+ },
40
+ "usesIOClasses": true
41
+ }
42
+ },
12
43
  "config": {},
13
44
  "types": {
14
45
  "eks:index:ClusterNodeGroupOptions": {
@@ -42,7 +73,7 @@
42
73
  "description": "The tags to apply to the CloudFormation Stack of the Worker NodeGroup.\n\nNote: Given the inheritance of auto-generated CF tags and `cloudFormationTags`, you should either supply the tag in `autoScalingGroupTags` or `cloudFormationTags`, but not both."
43
74
  },
44
75
  "clusterIngressRule": {
45
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
76
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
46
77
  "plain": true,
47
78
  "description": "The ingress rule that gives node group access."
48
79
  },
@@ -57,7 +88,7 @@
57
88
  "extraNodeSecurityGroups": {
58
89
  "type": "array",
59
90
  "items": {
60
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
91
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
61
92
  "plain": true
62
93
  },
63
94
  "plain": true,
@@ -68,7 +99,7 @@
68
99
  "description": "Use the latest recommended EKS Optimized Linux AMI with GPU support for the worker nodes from the AWS Systems Manager Parameter Store.\n\nDefaults to false.\n\nNote: `gpu` and `amiId` are mutually exclusive.\n\nSee for more details:\n- https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html\n- https://docs.aws.amazon.com/eks/latest/userguide/retrieve-ami-id.html"
69
100
  },
70
101
  "instanceProfile": {
71
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2FinstanceProfile:InstanceProfile",
102
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2FinstanceProfile:InstanceProfile",
72
103
  "plain": true,
73
104
  "description": "The ingress rule that gives node group access."
74
105
  },
@@ -116,7 +147,7 @@
116
147
  "description": "The size in GiB of a cluster node's root volume. Defaults to 20."
117
148
  },
118
149
  "nodeSecurityGroup": {
119
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
150
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
120
151
  "plain": true,
121
152
  "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."
122
153
  },
@@ -159,34 +190,34 @@
159
190
  "description": "Defines the core set of data associated with an EKS cluster, including the network in which it runs.",
160
191
  "properties": {
161
192
  "awsProvider": {
162
- "$ref": "/aws/v5.4.0/schema.json#/provider"
193
+ "$ref": "/aws/v5.31.0/schema.json#/provider"
163
194
  },
164
195
  "cluster": {
165
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:eks%2Fcluster:Cluster"
196
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:eks%2Fcluster:Cluster"
166
197
  },
167
198
  "clusterIamRole": {
168
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role",
199
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role",
169
200
  "description": "The IAM Role attached to the EKS Cluster"
170
201
  },
171
202
  "clusterSecurityGroup": {
172
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
203
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
173
204
  },
174
205
  "eksNodeAccess": {
175
206
  "$ref": "/kubernetes/v3.0.0/schema.json#/resources/kubernetes:core%2Fv1:ConfigMap"
176
207
  },
177
208
  "encryptionConfig": {
178
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:eks%2FClusterEncryptionConfig:ClusterEncryptionConfig"
209
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:eks%2FClusterEncryptionConfig:ClusterEncryptionConfig"
179
210
  },
180
211
  "endpoint": {
181
212
  "type": "string"
182
213
  },
183
214
  "fargateProfile": {
184
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:eks%2FfargateProfile:FargateProfile"
215
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:eks%2FfargateProfile:FargateProfile"
185
216
  },
186
217
  "instanceRoles": {
187
218
  "type": "array",
188
219
  "items": {
189
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role"
220
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role"
190
221
  }
191
222
  },
192
223
  "kubeconfig": {
@@ -202,7 +233,7 @@
202
233
  }
203
234
  },
204
235
  "oidcProvider": {
205
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2FopenIdConnectProvider:OpenIdConnectProvider"
236
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2FopenIdConnectProvider:OpenIdConnectProvider"
206
237
  },
207
238
  "privateSubnetIds": {
208
239
  "type": "array",
@@ -261,11 +292,11 @@
261
292
  "description": "Contains the AWS Role and Provider necessary to override the `[system:master]` entity ARN. This is an optional argument used when creating `Cluster`. Read more: https://docs.aws.amazon.com/eks/latest/userguide/add-user-role.html",
262
293
  "properties": {
263
294
  "provider": {
264
- "$ref": "/aws/v5.4.0/schema.json#/provider",
295
+ "$ref": "/aws/v5.31.0/schema.json#/provider",
265
296
  "plain": true
266
297
  },
267
298
  "role": {
268
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role",
299
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role",
269
300
  "plain": true
270
301
  }
271
302
  },
@@ -285,7 +316,7 @@
285
316
  "selectors": {
286
317
  "type": "array",
287
318
  "items": {
288
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:eks%2FFargateProfileSelector:FargateProfileSelector"
319
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:eks%2FFargateProfileSelector:FargateProfileSelector"
289
320
  },
290
321
  "description": "Specify the namespace and label selectors to use for launching pods into Fargate."
291
322
  },
@@ -321,18 +352,18 @@
321
352
  "description": "The AutoScalingGroup name for the node group."
322
353
  },
323
354
  "cfnStack": {
324
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:cloudformation%2Fstack:Stack",
355
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:cloudformation%2Fstack:Stack",
325
356
  "description": "The CloudFormation Stack which defines the Node AutoScalingGroup."
326
357
  },
327
358
  "extraNodeSecurityGroups": {
328
359
  "type": "array",
329
360
  "items": {
330
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
361
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
331
362
  },
332
363
  "description": "The additional security groups for the node group that captures user-specific rules."
333
364
  },
334
365
  "nodeSecurityGroup": {
335
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
366
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
336
367
  "description": "The security group for the node group to communicate with the cluster."
337
368
  }
338
369
  },
@@ -572,11 +603,11 @@
572
603
  "description": "Cluster is a component that wraps the AWS and Kubernetes resources necessary to run an EKS cluster, its worker nodes, its optional StorageClasses, and an optional deployment of the Kubernetes Dashboard.",
573
604
  "properties": {
574
605
  "awsProvider": {
575
- "$ref": "/aws/v5.4.0/schema.json#/provider",
606
+ "$ref": "/aws/v5.31.0/schema.json#/provider",
576
607
  "description": "The AWS resource provider."
577
608
  },
578
609
  "clusterSecurityGroup": {
579
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
610
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
580
611
  "description": "The security group for the EKS cluster."
581
612
  },
582
613
  "core": {
@@ -588,17 +619,17 @@
588
619
  "description": "The default Node Group configuration, or undefined if `skipDefaultNodeGroup` was specified."
589
620
  },
590
621
  "eksCluster": {
591
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:eks%2Fcluster:Cluster",
622
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:eks%2Fcluster:Cluster",
592
623
  "description": "The EKS cluster."
593
624
  },
594
625
  "eksClusterIngressRule": {
595
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
626
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
596
627
  "description": "The ingress rule that gives node group access to cluster API server."
597
628
  },
598
629
  "instanceRoles": {
599
630
  "type": "array",
600
631
  "items": {
601
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role"
632
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role"
602
633
  },
603
634
  "description": "The service roles used by the EKS cluster."
604
635
  },
@@ -611,7 +642,7 @@
611
642
  "description": "A kubeconfig that can be used to connect to the EKS cluster as a JSON string."
612
643
  },
613
644
  "nodeSecurityGroup": {
614
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
645
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
615
646
  "description": "The security group for the cluster's nodes."
616
647
  }
617
648
  },
@@ -628,7 +659,7 @@
628
659
  ],
629
660
  "inputProperties": {
630
661
  "clusterSecurityGroup": {
631
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
662
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
632
663
  "plain": true,
633
664
  "description": "The security group to use for the cluster API endpoint. If not provided, a new security group will be created with full internet egress and ingress from node groups."
634
665
  },
@@ -709,13 +740,13 @@
709
740
  "description": "The default IAM InstanceProfile to use on the Worker NodeGroups, if one is not already set in the NodeGroup."
710
741
  },
711
742
  "instanceRole": {
712
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role",
743
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role",
713
744
  "description": "This enables the simple case of only registering a *single* IAM instance role with the cluster, that is required to be shared by *all* node groups in their instance profiles.\n\nNote: options `instanceRole` and `instanceRoles` are mutually exclusive."
714
745
  },
715
746
  "instanceRoles": {
716
747
  "type": "array",
717
748
  "items": {
718
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role"
749
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role"
719
750
  },
720
751
  "description": "This enables the advanced case of registering *many* IAM instance roles with the cluster for per node group IAM, instead of the simpler, shared case of `instanceRole`.\n\nNote: options `instanceRole` and `instanceRoles` are mutually exclusive."
721
752
  },
@@ -817,7 +848,7 @@
817
848
  "description": "Optional mappings from AWS IAM roles to Kubernetes users and groups."
818
849
  },
819
850
  "serviceRole": {
820
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role",
851
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role",
821
852
  "description": "IAM Service Role for EKS to use to manage the cluster."
822
853
  },
823
854
  "skipDefaultNodeGroup": {
@@ -892,7 +923,7 @@
892
923
  "description": "ClusterCreationRoleProvider is a component that wraps creating a role provider that can be passed to the `Cluster`'s `creationRoleProvider`. This can be used to provide a specific role to use for the creation of the EKS cluster different from the role being used to run the Pulumi deployment.",
893
924
  "properties": {
894
925
  "role": {
895
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role"
926
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role"
896
927
  }
897
928
  },
898
929
  "required": [
@@ -912,7 +943,7 @@
912
943
  "description": "ManagedNodeGroup is a component that wraps creating an AWS managed node group.\n\nSee for more details:\nhttps://docs.aws.amazon.com/eks/latest/userguide/managed-node-groups.html",
913
944
  "properties": {
914
945
  "nodeGroup": {
915
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:eks%2FnodeGroup:NodeGroup",
946
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:eks%2FnodeGroup:NodeGroup",
916
947
  "description": "The AWS managed node group."
917
948
  }
918
949
  },
@@ -966,7 +997,7 @@
966
997
  "description": "Key-value map of Kubernetes labels. Only labels that are applied with the EKS API are managed by this argument. Other Kubernetes labels applied to the EKS Node Group will not be managed."
967
998
  },
968
999
  "launchTemplate": {
969
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:eks%2FNodeGroupLaunchTemplate:NodeGroupLaunchTemplate",
1000
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:eks%2FNodeGroupLaunchTemplate:NodeGroupLaunchTemplate",
970
1001
  "description": "Launch Template settings."
971
1002
  },
972
1003
  "nodeGroupName": {
@@ -978,7 +1009,7 @@
978
1009
  "description": "Creates a unique name beginning with the specified prefix. Conflicts with `nodeGroupName`."
979
1010
  },
980
1011
  "nodeRole": {
981
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2Frole:Role",
1012
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2Frole:Role",
982
1013
  "description": "The IAM Role that provides permissions for the EKS Node Group.\n\nNote, `nodeRole` and `nodeRoleArn` are mutually exclusive, and a single option must be used."
983
1014
  },
984
1015
  "nodeRoleArn": {
@@ -990,11 +1021,11 @@
990
1021
  "description": "AMI version of the EKS Node Group. Defaults to latest version for Kubernetes version."
991
1022
  },
992
1023
  "remoteAccess": {
993
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:eks%2FNodeGroupRemoteAccess:NodeGroupRemoteAccess",
1024
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:eks%2FNodeGroupRemoteAccess:NodeGroupRemoteAccess",
994
1025
  "description": "Remote access settings."
995
1026
  },
996
1027
  "scalingConfig": {
997
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:eks%2FNodeGroupScalingConfig:NodeGroupScalingConfig",
1028
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:eks%2FNodeGroupScalingConfig:NodeGroupScalingConfig",
998
1029
  "description": "Scaling settings.\n\nDefault scaling amounts of the node group autoscaling group are:\n - desiredSize: 2\n - minSize: 1\n - maxSize: 2"
999
1030
  },
1000
1031
  "subnetIds": {
@@ -1014,7 +1045,7 @@
1014
1045
  "taints": {
1015
1046
  "type": "array",
1016
1047
  "items": {
1017
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:eks%2FNodeGroupTaint:NodeGroupTaint"
1048
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:eks%2FNodeGroupTaint:NodeGroupTaint"
1018
1049
  },
1019
1050
  "description": "The Kubernetes taints to be applied to the nodes in the node group. Maximum of 50 taints per node group."
1020
1051
  },
@@ -1035,18 +1066,18 @@
1035
1066
  "description": "The AutoScalingGroup name for the Node group."
1036
1067
  },
1037
1068
  "cfnStack": {
1038
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:cloudformation%2Fstack:Stack",
1069
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:cloudformation%2Fstack:Stack",
1039
1070
  "description": "The CloudFormation Stack which defines the Node AutoScalingGroup."
1040
1071
  },
1041
1072
  "extraNodeSecurityGroups": {
1042
1073
  "type": "array",
1043
1074
  "items": {
1044
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
1075
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
1045
1076
  },
1046
1077
  "description": "The additional security groups for the node group that captures user-specific rules."
1047
1078
  },
1048
1079
  "nodeSecurityGroup": {
1049
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1080
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1050
1081
  "description": "The security group for the node group to communicate with the cluster."
1051
1082
  }
1052
1083
  },
@@ -1096,7 +1127,7 @@
1096
1127
  "description": "The target EKS cluster."
1097
1128
  },
1098
1129
  "clusterIngressRule": {
1099
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
1130
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
1100
1131
  "plain": true,
1101
1132
  "description": "The ingress rule that gives node group access."
1102
1133
  },
@@ -1111,7 +1142,7 @@
1111
1142
  "extraNodeSecurityGroups": {
1112
1143
  "type": "array",
1113
1144
  "items": {
1114
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1145
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1115
1146
  "plain": true
1116
1147
  },
1117
1148
  "plain": true,
@@ -1122,7 +1153,7 @@
1122
1153
  "description": "Use the latest recommended EKS Optimized Linux AMI with GPU support for the worker nodes from the AWS Systems Manager Parameter Store.\n\nDefaults to false.\n\nNote: `gpu` and `amiId` are mutually exclusive.\n\nSee for more details:\n- https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html\n- https://docs.aws.amazon.com/eks/latest/userguide/retrieve-ami-id.html"
1123
1154
  },
1124
1155
  "instanceProfile": {
1125
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2FinstanceProfile:InstanceProfile",
1156
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2FinstanceProfile:InstanceProfile",
1126
1157
  "plain": true,
1127
1158
  "description": "The ingress rule that gives node group access."
1128
1159
  },
@@ -1170,7 +1201,7 @@
1170
1201
  "description": "The size in GiB of a cluster node's root volume. Defaults to 20."
1171
1202
  },
1172
1203
  "nodeSecurityGroup": {
1173
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1204
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1174
1205
  "plain": true,
1175
1206
  "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."
1176
1207
  },
@@ -1216,11 +1247,11 @@
1216
1247
  "description": "NodeGroupSecurityGroup is a component that wraps creating a security group for node groups with the default ingress \u0026 egress rules required to connect and work with the EKS cluster security group.",
1217
1248
  "properties": {
1218
1249
  "securityGroup": {
1219
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1250
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1220
1251
  "description": "The security group for node groups with the default ingress \u0026 egress rules required to connect and work with the EKS cluster security group."
1221
1252
  },
1222
1253
  "securityGroupRule": {
1223
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
1254
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
1224
1255
  "description": "The EKS cluster ingress rule."
1225
1256
  }
1226
1257
  },
@@ -1230,11 +1261,11 @@
1230
1261
  ],
1231
1262
  "inputProperties": {
1232
1263
  "clusterSecurityGroup": {
1233
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1264
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1234
1265
  "description": "The security group associated with the EKS cluster."
1235
1266
  },
1236
1267
  "eksCluster": {
1237
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:eks%2Fcluster:Cluster",
1268
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:eks%2Fcluster:Cluster",
1238
1269
  "description": "The EKS cluster associated with the worker node group"
1239
1270
  },
1240
1271
  "tags": {
@@ -1260,18 +1291,18 @@
1260
1291
  "description": "NodeGroup is a component that wraps the AWS EC2 instances that provide compute capacity for an EKS cluster.",
1261
1292
  "properties": {
1262
1293
  "autoScalingGroup": {
1263
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:autoscaling%2Fgroup:Group",
1294
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:autoscaling%2Fgroup:Group",
1264
1295
  "description": "The AutoScalingGroup for the Node group."
1265
1296
  },
1266
1297
  "extraNodeSecurityGroups": {
1267
1298
  "type": "array",
1268
1299
  "items": {
1269
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
1300
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup"
1270
1301
  },
1271
1302
  "description": "The additional security groups for the node group that captures user-specific rules."
1272
1303
  },
1273
1304
  "nodeSecurityGroup": {
1274
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1305
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1275
1306
  "description": "The security group for the node group to communicate with the cluster."
1276
1307
  }
1277
1308
  },
@@ -1320,7 +1351,7 @@
1320
1351
  "description": "The target EKS cluster."
1321
1352
  },
1322
1353
  "clusterIngressRule": {
1323
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
1354
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroupRule:SecurityGroupRule",
1324
1355
  "plain": true,
1325
1356
  "description": "The ingress rule that gives node group access."
1326
1357
  },
@@ -1335,7 +1366,7 @@
1335
1366
  "extraNodeSecurityGroups": {
1336
1367
  "type": "array",
1337
1368
  "items": {
1338
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1369
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1339
1370
  "plain": true
1340
1371
  },
1341
1372
  "plain": true,
@@ -1346,7 +1377,7 @@
1346
1377
  "description": "Use the latest recommended EKS Optimized Linux AMI with GPU support for the worker nodes from the AWS Systems Manager Parameter Store.\n\nDefaults to false.\n\nNote: `gpu` and `amiId` are mutually exclusive.\n\nSee for more details:\n- https://docs.aws.amazon.com/eks/latest/userguide/eks-optimized-ami.html\n- https://docs.aws.amazon.com/eks/latest/userguide/retrieve-ami-id.html"
1347
1378
  },
1348
1379
  "instanceProfile": {
1349
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:iam%2FinstanceProfile:InstanceProfile",
1380
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:iam%2FinstanceProfile:InstanceProfile",
1350
1381
  "plain": true,
1351
1382
  "description": "The ingress rule that gives node group access."
1352
1383
  },
@@ -1375,7 +1406,7 @@
1375
1406
  "launchTemplateTagSpecifications": {
1376
1407
  "type": "array",
1377
1408
  "items": {
1378
- "$ref": "/aws/v5.4.0/schema.json#/types/aws:ec2%2FLaunchTemplateTagSpecification:LaunchTemplateTagSpecification"
1409
+ "$ref": "/aws/v5.31.0/schema.json#/types/aws:ec2%2FLaunchTemplateTagSpecification:LaunchTemplateTagSpecification"
1379
1410
  },
1380
1411
  "description": "The tag specifications to apply to the launch template."
1381
1412
  },
@@ -1405,7 +1436,7 @@
1405
1436
  "description": "The size in GiB of a cluster node's root volume. Defaults to 20."
1406
1437
  },
1407
1438
  "nodeSecurityGroup": {
1408
- "$ref": "/aws/v5.4.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1439
+ "$ref": "/aws/v5.31.0/schema.json#/resources/aws:ec2%2FsecurityGroup:SecurityGroup",
1409
1440
  "plain": true,
1410
1441
  "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."
1411
1442
  },
@@ -1576,36 +1607,5 @@
1576
1607
  ]
1577
1608
  }
1578
1609
  }
1579
- },
1580
- "language": {
1581
- "csharp": {
1582
- "liftSingleValueMethodReturns": true,
1583
- "packageReferences": {
1584
- "Pulumi": "3.*",
1585
- "Pulumi.Aws": "5.*",
1586
- "Pulumi.Kubernetes": "3.*"
1587
- }
1588
- },
1589
- "go": {
1590
- "generateResourceContainerTypes": true,
1591
- "importBasePath": "github.com/pulumi/pulumi-eks/sdk/go/eks",
1592
- "liftSingleValueMethodReturns": true
1593
- },
1594
- "java": {
1595
- "dependencies": {
1596
- "com.pulumi:aws": "5.4.0",
1597
- "com.pulumi:kubernetes": "3.19.1"
1598
- }
1599
- },
1600
- "python": {
1601
- "liftSingleValueMethodReturns": true,
1602
- "readme": "Pulumi Amazon Web Services (AWS) EKS Components.",
1603
- "requires": {
1604
- "pulumi": "\u003e=3.0.0,\u003c4.0.0",
1605
- "pulumi-aws": "\u003e=5.0.0,\u003c6.0.0",
1606
- "pulumi-kubernetes": "\u003e=3.0.0,\u003c4.0.0"
1607
- },
1608
- "usesIOClasses": true
1609
- }
1610
1610
  }
1611
1611
  }
@@ -1 +1 @@
1
- {"version":3,"file":"securitygroup.js","sourceRoot":"","sources":["../../../cmd/provider/securitygroup.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAGjC,uDAA6D;AAE7D,MAAM,8BAA8B,GAA6B;IAC7D,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,MAAqB,EAAE,OAAwC,EAAE,EAAE;QACvG,IAAI;YACA,MAAM,sBAAsB,GAAG,IAAI,sCAAsB,CAAC,IAAI,EAAO,MAAM,EAAE,OAAO,CAAC,CAAC;YACtF,OAAO,OAAO,CAAC,OAAO,CAAC;gBACnB,GAAG,EAAE,sBAAsB,CAAC,GAAG;gBAC/B,KAAK,EAAE;oBACH,aAAa,EAAE,sBAAsB,CAAC,aAAa;oBACnD,iBAAiB,EAAE,sBAAsB,CAAC,iBAAiB;iBAC9D;aACJ,CAAC,CAAC;SACN;QAAC,OAAO,CAAC,EAAE;YACR,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SAC5B;IACL,CAAC;IACD,OAAO,EAAE,EAAE;CACd,CAAC;AAEF,gBAAgB;AAChB,SAAgB,qCAAqC;IACjD,OAAO,8BAA8B,CAAC;AAC1C,CAAC;AAFD,sFAEC"}
1
+ {"version":3,"file":"securitygroup.js","sourceRoot":"","sources":["../../../cmd/provider/securitygroup.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAGjC,uDAA6D;AAE7D,MAAM,8BAA8B,GAA6B;IAC7D,SAAS,EAAE,CACP,IAAY,EACZ,IAAY,EACZ,MAAqB,EACrB,OAAwC,EAC1C,EAAE;QACA,IAAI;YACA,MAAM,sBAAsB,GAAG,IAAI,sCAAsB,CAAC,IAAI,EAAO,MAAM,EAAE,OAAO,CAAC,CAAC;YACtF,OAAO,OAAO,CAAC,OAAO,CAAC;gBACnB,GAAG,EAAE,sBAAsB,CAAC,GAAG;gBAC/B,KAAK,EAAE;oBACH,aAAa,EAAE,sBAAsB,CAAC,aAAa;oBACnD,iBAAiB,EAAE,sBAAsB,CAAC,iBAAiB;iBAC9D;aACJ,CAAC,CAAC;SACN;QAAC,OAAO,CAAC,EAAE;YACR,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;SAC5B;IACL,CAAC;IACD,OAAO,EAAE,EAAE;CACd,CAAC;AAEF,gBAAgB;AAChB,SAAgB,qCAAqC;IACjD,OAAO,8BAA8B,CAAC;AAC1C,CAAC;AAFD,sFAEC"}