pulumi-eks 3.9.0a1742626547__py3-none-any.whl → 4.2.0__py3-none-any.whl
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.
- pulumi_eks/__init__.py +1 -0
- pulumi_eks/_enums.py +16 -7
- pulumi_eks/_inputs.py +491 -490
- pulumi_eks/_utilities.py +8 -4
- pulumi_eks/addon.py +51 -49
- pulumi_eks/cluster.py +346 -304
- pulumi_eks/cluster_creation_role_provider.py +12 -10
- pulumi_eks/managed_node_group.py +162 -160
- pulumi_eks/node_group.py +221 -219
- pulumi_eks/node_group_security_group.py +16 -14
- pulumi_eks/node_group_v2.py +234 -232
- pulumi_eks/outputs.py +148 -147
- pulumi_eks/provider.py +2 -0
- pulumi_eks/pulumi-plugin.json +1 -1
- pulumi_eks/vpc_cni_addon.py +170 -168
- {pulumi_eks-3.9.0a1742626547.dist-info → pulumi_eks-4.2.0.dist-info}/METADATA +4 -4
- pulumi_eks-4.2.0.dist-info/RECORD +20 -0
- {pulumi_eks-3.9.0a1742626547.dist-info → pulumi_eks-4.2.0.dist-info}/WHEEL +1 -1
- pulumi_eks-3.9.0a1742626547.dist-info/RECORD +0 -20
- {pulumi_eks-3.9.0a1742626547.dist-info → pulumi_eks-4.2.0.dist-info}/top_level.txt +0 -0
pulumi_eks/__init__.py
CHANGED
pulumi_eks/_enums.py
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by pulumi-gen-eks. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
6
|
+
import pulumi
|
|
5
7
|
from enum import Enum
|
|
6
8
|
|
|
7
9
|
__all__ = [
|
|
@@ -15,7 +17,8 @@ __all__ = [
|
|
|
15
17
|
]
|
|
16
18
|
|
|
17
19
|
|
|
18
|
-
|
|
20
|
+
@pulumi.type_token("eks:index:AccessEntryType")
|
|
21
|
+
class AccessEntryType(builtins.str, Enum):
|
|
19
22
|
"""
|
|
20
23
|
The type of the new access entry. Valid values are STANDARD, FARGATE_LINUX, EC2_LINUX, and EC2_WINDOWS.
|
|
21
24
|
Defaults to STANDARD which provides the standard workflow. EC2_LINUX and EC2_WINDOWS types disallow users to input a kubernetesGroup, and prevent associating access policies.
|
|
@@ -42,7 +45,8 @@ class AccessEntryType(str, Enum):
|
|
|
42
45
|
"""
|
|
43
46
|
|
|
44
47
|
|
|
45
|
-
|
|
48
|
+
@pulumi.type_token("eks:index:AmiType")
|
|
49
|
+
class AmiType(builtins.str, Enum):
|
|
46
50
|
"""
|
|
47
51
|
Predefined AMI types for EKS optimized AMIs. Can be used to select the latest EKS optimized AMI for a node group.
|
|
48
52
|
"""
|
|
@@ -58,7 +62,8 @@ class AmiType(str, Enum):
|
|
|
58
62
|
BOTTLEROCKET_X86_64_NVIDIA = "BOTTLEROCKET_x86_64_NVIDIA"
|
|
59
63
|
|
|
60
64
|
|
|
61
|
-
|
|
65
|
+
@pulumi.type_token("eks:index:AuthenticationMode")
|
|
66
|
+
class AuthenticationMode(builtins.str, Enum):
|
|
62
67
|
"""
|
|
63
68
|
The authentication mode of the cluster. Valid values are `CONFIG_MAP`, `API` or `API_AND_CONFIG_MAP`.
|
|
64
69
|
|
|
@@ -79,7 +84,8 @@ class AuthenticationMode(str, Enum):
|
|
|
79
84
|
"""
|
|
80
85
|
|
|
81
86
|
|
|
82
|
-
|
|
87
|
+
@pulumi.type_token("eks:index:ClusterNodePools")
|
|
88
|
+
class ClusterNodePools(builtins.str, Enum):
|
|
83
89
|
"""
|
|
84
90
|
Built-in node pools of EKS Auto Mode. For more details see: https://docs.aws.amazon.com/eks/latest/userguide/set-builtin-node-pools.html
|
|
85
91
|
"""
|
|
@@ -93,7 +99,8 @@ class ClusterNodePools(str, Enum):
|
|
|
93
99
|
"""
|
|
94
100
|
|
|
95
101
|
|
|
96
|
-
|
|
102
|
+
@pulumi.type_token("eks:index:OperatingSystem")
|
|
103
|
+
class OperatingSystem(builtins.str, Enum):
|
|
97
104
|
"""
|
|
98
105
|
The type of EKS optimized Operating System to use for node groups.
|
|
99
106
|
|
|
@@ -123,7 +130,8 @@ class OperatingSystem(str, Enum):
|
|
|
123
130
|
"""
|
|
124
131
|
|
|
125
132
|
|
|
126
|
-
|
|
133
|
+
@pulumi.type_token("eks:index:ResolveConflictsOnCreate")
|
|
134
|
+
class ResolveConflictsOnCreate(builtins.str, Enum):
|
|
127
135
|
"""
|
|
128
136
|
How to resolve field value conflicts when migrating a self-managed add-on to an Amazon EKS add-on. Valid values are `NONE` and `OVERWRITE`. For more details see the [CreateAddon](https://docs.aws.amazon.com/eks/latest/APIReference/API_CreateAddon.html) API Docs.
|
|
129
137
|
"""
|
|
@@ -137,7 +145,8 @@ class ResolveConflictsOnCreate(str, Enum):
|
|
|
137
145
|
"""
|
|
138
146
|
|
|
139
147
|
|
|
140
|
-
|
|
148
|
+
@pulumi.type_token("eks:index:ResolveConflictsOnUpdate")
|
|
149
|
+
class ResolveConflictsOnUpdate(builtins.str, Enum):
|
|
141
150
|
"""
|
|
142
151
|
How to resolve field value conflicts for an Amazon EKS add-on if you've changed a value from the Amazon EKS default value. Valid values are `NONE`, `OVERWRITE`, and `PRESERVE`. For more details see the [UpdateAddon](https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateAddon.html) API Docs.
|
|
143
152
|
"""
|