pulumi-nomad 2.1.0a1706693590__py3-none-any.whl → 2.2.0a1706812334__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_nomad/_inputs.py +60 -0
- pulumi_nomad/_utilities.py +6 -2
- pulumi_nomad/config/outputs.py +10 -0
- pulumi_nomad/outputs.py +58 -0
- {pulumi_nomad-2.1.0a1706693590.dist-info → pulumi_nomad-2.2.0a1706812334.dist-info}/METADATA +2 -1
- {pulumi_nomad-2.1.0a1706693590.dist-info → pulumi_nomad-2.2.0a1706812334.dist-info}/RECORD +8 -8
- {pulumi_nomad-2.1.0a1706693590.dist-info → pulumi_nomad-2.2.0a1706812334.dist-info}/WHEEL +0 -0
- {pulumi_nomad-2.1.0a1706693590.dist-info → pulumi_nomad-2.2.0a1706812334.dist-info}/top_level.txt +0 -0
pulumi_nomad/_inputs.py
CHANGED
@@ -68,6 +68,18 @@ class AclAuthMethodConfigArgs:
|
|
68
68
|
list_claim_mappings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
69
69
|
oidc_scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
70
70
|
signing_algs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
71
|
+
"""
|
72
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_redirect_uris: A list of allowed values that can be used for the redirect URI.
|
73
|
+
:param pulumi.Input[str] oidc_client_id: The OAuth Client ID configured with the OIDC provider.
|
74
|
+
:param pulumi.Input[str] oidc_client_secret: The OAuth Client Secret configured with the OIDC provider.
|
75
|
+
:param pulumi.Input[str] oidc_discovery_url: The OIDC Discovery URL, without any .well-known component (base path).
|
76
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] bound_audiences: List of auth claims that are valid for login.
|
77
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] claim_mappings: Mappings of claims (key) that will be copied to a metadata field (value).
|
78
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] discovery_ca_pems: PEM encoded CA certs for use by the TLS client used to talk with the OIDC Discovery URL.
|
79
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] list_claim_mappings: Mappings of list claims (key) that will be copied to a metadata field (value).
|
80
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] oidc_scopes: List of OIDC scopes.
|
81
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] signing_algs: A list of supported signing algorithms.
|
82
|
+
"""
|
71
83
|
pulumi.set(__self__, "allowed_redirect_uris", allowed_redirect_uris)
|
72
84
|
pulumi.set(__self__, "oidc_client_id", oidc_client_id)
|
73
85
|
pulumi.set(__self__, "oidc_client_secret", oidc_client_secret)
|
@@ -88,6 +100,9 @@ class AclAuthMethodConfigArgs:
|
|
88
100
|
@property
|
89
101
|
@pulumi.getter(name="allowedRedirectUris")
|
90
102
|
def allowed_redirect_uris(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
103
|
+
"""
|
104
|
+
A list of allowed values that can be used for the redirect URI.
|
105
|
+
"""
|
91
106
|
return pulumi.get(self, "allowed_redirect_uris")
|
92
107
|
|
93
108
|
@allowed_redirect_uris.setter
|
@@ -97,6 +112,9 @@ class AclAuthMethodConfigArgs:
|
|
97
112
|
@property
|
98
113
|
@pulumi.getter(name="oidcClientId")
|
99
114
|
def oidc_client_id(self) -> pulumi.Input[str]:
|
115
|
+
"""
|
116
|
+
The OAuth Client ID configured with the OIDC provider.
|
117
|
+
"""
|
100
118
|
return pulumi.get(self, "oidc_client_id")
|
101
119
|
|
102
120
|
@oidc_client_id.setter
|
@@ -106,6 +124,9 @@ class AclAuthMethodConfigArgs:
|
|
106
124
|
@property
|
107
125
|
@pulumi.getter(name="oidcClientSecret")
|
108
126
|
def oidc_client_secret(self) -> pulumi.Input[str]:
|
127
|
+
"""
|
128
|
+
The OAuth Client Secret configured with the OIDC provider.
|
129
|
+
"""
|
109
130
|
return pulumi.get(self, "oidc_client_secret")
|
110
131
|
|
111
132
|
@oidc_client_secret.setter
|
@@ -115,6 +136,9 @@ class AclAuthMethodConfigArgs:
|
|
115
136
|
@property
|
116
137
|
@pulumi.getter(name="oidcDiscoveryUrl")
|
117
138
|
def oidc_discovery_url(self) -> pulumi.Input[str]:
|
139
|
+
"""
|
140
|
+
The OIDC Discovery URL, without any .well-known component (base path).
|
141
|
+
"""
|
118
142
|
return pulumi.get(self, "oidc_discovery_url")
|
119
143
|
|
120
144
|
@oidc_discovery_url.setter
|
@@ -124,6 +148,9 @@ class AclAuthMethodConfigArgs:
|
|
124
148
|
@property
|
125
149
|
@pulumi.getter(name="boundAudiences")
|
126
150
|
def bound_audiences(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
151
|
+
"""
|
152
|
+
List of auth claims that are valid for login.
|
153
|
+
"""
|
127
154
|
return pulumi.get(self, "bound_audiences")
|
128
155
|
|
129
156
|
@bound_audiences.setter
|
@@ -133,6 +160,9 @@ class AclAuthMethodConfigArgs:
|
|
133
160
|
@property
|
134
161
|
@pulumi.getter(name="claimMappings")
|
135
162
|
def claim_mappings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
163
|
+
"""
|
164
|
+
Mappings of claims (key) that will be copied to a metadata field (value).
|
165
|
+
"""
|
136
166
|
return pulumi.get(self, "claim_mappings")
|
137
167
|
|
138
168
|
@claim_mappings.setter
|
@@ -142,6 +172,9 @@ class AclAuthMethodConfigArgs:
|
|
142
172
|
@property
|
143
173
|
@pulumi.getter(name="discoveryCaPems")
|
144
174
|
def discovery_ca_pems(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
175
|
+
"""
|
176
|
+
PEM encoded CA certs for use by the TLS client used to talk with the OIDC Discovery URL.
|
177
|
+
"""
|
145
178
|
return pulumi.get(self, "discovery_ca_pems")
|
146
179
|
|
147
180
|
@discovery_ca_pems.setter
|
@@ -151,6 +184,9 @@ class AclAuthMethodConfigArgs:
|
|
151
184
|
@property
|
152
185
|
@pulumi.getter(name="listClaimMappings")
|
153
186
|
def list_claim_mappings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
187
|
+
"""
|
188
|
+
Mappings of list claims (key) that will be copied to a metadata field (value).
|
189
|
+
"""
|
154
190
|
return pulumi.get(self, "list_claim_mappings")
|
155
191
|
|
156
192
|
@list_claim_mappings.setter
|
@@ -160,6 +196,9 @@ class AclAuthMethodConfigArgs:
|
|
160
196
|
@property
|
161
197
|
@pulumi.getter(name="oidcScopes")
|
162
198
|
def oidc_scopes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
199
|
+
"""
|
200
|
+
List of OIDC scopes.
|
201
|
+
"""
|
163
202
|
return pulumi.get(self, "oidc_scopes")
|
164
203
|
|
165
204
|
@oidc_scopes.setter
|
@@ -169,6 +208,9 @@ class AclAuthMethodConfigArgs:
|
|
169
208
|
@property
|
170
209
|
@pulumi.getter(name="signingAlgs")
|
171
210
|
def signing_algs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
211
|
+
"""
|
212
|
+
A list of supported signing algorithms.
|
213
|
+
"""
|
172
214
|
return pulumi.get(self, "signing_algs")
|
173
215
|
|
174
216
|
@signing_algs.setter
|
@@ -284,6 +326,7 @@ class AclTokenRoleArgs:
|
|
284
326
|
id: pulumi.Input[str],
|
285
327
|
name: Optional[pulumi.Input[str]] = None):
|
286
328
|
"""
|
329
|
+
:param pulumi.Input[str] id: The ID of the ACL role to link.
|
287
330
|
:param pulumi.Input[str] name: `(string: "")` - A human-friendly name for this token.
|
288
331
|
"""
|
289
332
|
pulumi.set(__self__, "id", id)
|
@@ -293,6 +336,9 @@ class AclTokenRoleArgs:
|
|
293
336
|
@property
|
294
337
|
@pulumi.getter
|
295
338
|
def id(self) -> pulumi.Input[str]:
|
339
|
+
"""
|
340
|
+
The ID of the ACL role to link.
|
341
|
+
"""
|
296
342
|
return pulumi.get(self, "id")
|
297
343
|
|
298
344
|
@id.setter
|
@@ -1031,6 +1077,7 @@ class JobHcl2Args:
|
|
1031
1077
|
HCL2 filesystem functions
|
1032
1078
|
:param pulumi.Input[bool] enabled: `(boolean: false)` - **Deprecated** All HCL jobs are parsed as
|
1033
1079
|
HCL2 by default.
|
1080
|
+
:param pulumi.Input[Mapping[str, Any]] vars: Additional variables to use when templating the job with HCL2
|
1034
1081
|
"""
|
1035
1082
|
if allow_fs is not None:
|
1036
1083
|
pulumi.set(__self__, "allow_fs", allow_fs)
|
@@ -1074,6 +1121,9 @@ class JobHcl2Args:
|
|
1074
1121
|
@property
|
1075
1122
|
@pulumi.getter
|
1076
1123
|
def vars(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
1124
|
+
"""
|
1125
|
+
Additional variables to use when templating the job with HCL2
|
1126
|
+
"""
|
1077
1127
|
return pulumi.get(self, "vars")
|
1078
1128
|
|
1079
1129
|
@vars.setter
|
@@ -1449,12 +1499,19 @@ class ProviderHeaderArgs:
|
|
1449
1499
|
def __init__(__self__, *,
|
1450
1500
|
name: pulumi.Input[str],
|
1451
1501
|
value: pulumi.Input[str]):
|
1502
|
+
"""
|
1503
|
+
:param pulumi.Input[str] name: The header name
|
1504
|
+
:param pulumi.Input[str] value: The header value
|
1505
|
+
"""
|
1452
1506
|
pulumi.set(__self__, "name", name)
|
1453
1507
|
pulumi.set(__self__, "value", value)
|
1454
1508
|
|
1455
1509
|
@property
|
1456
1510
|
@pulumi.getter
|
1457
1511
|
def name(self) -> pulumi.Input[str]:
|
1512
|
+
"""
|
1513
|
+
The header name
|
1514
|
+
"""
|
1458
1515
|
return pulumi.get(self, "name")
|
1459
1516
|
|
1460
1517
|
@name.setter
|
@@ -1464,6 +1521,9 @@ class ProviderHeaderArgs:
|
|
1464
1521
|
@property
|
1465
1522
|
@pulumi.getter
|
1466
1523
|
def value(self) -> pulumi.Input[str]:
|
1524
|
+
"""
|
1525
|
+
The header value
|
1526
|
+
"""
|
1467
1527
|
return pulumi.get(self, "value")
|
1468
1528
|
|
1469
1529
|
@value.setter
|
pulumi_nomad/_utilities.py
CHANGED
@@ -8,7 +8,6 @@ import importlib.util
|
|
8
8
|
import inspect
|
9
9
|
import json
|
10
10
|
import os
|
11
|
-
import pkg_resources
|
12
11
|
import sys
|
13
12
|
import typing
|
14
13
|
|
@@ -19,6 +18,11 @@ from pulumi.runtime.sync_await import _sync_await
|
|
19
18
|
from semver import VersionInfo as SemverVersion
|
20
19
|
from parver import Version as PEP440Version
|
21
20
|
|
21
|
+
if sys.version_info >= (3, 8):
|
22
|
+
from importlib import metadata
|
23
|
+
else:
|
24
|
+
import importlib_metadata as metadata
|
25
|
+
|
22
26
|
|
23
27
|
def get_env(*args):
|
24
28
|
for v in args:
|
@@ -72,7 +76,7 @@ def _get_semver_version():
|
|
72
76
|
# to receive a valid semver string when receiving requests from the language host, so it's our
|
73
77
|
# responsibility as the library to convert our own PEP440 version into a valid semver string.
|
74
78
|
|
75
|
-
pep440_version_string =
|
79
|
+
pep440_version_string = metadata.version(root_package)
|
76
80
|
pep440_version = PEP440Version.parse(pep440_version_string)
|
77
81
|
(major, minor, patch) = pep440_version.release
|
78
82
|
prerelease = None
|
pulumi_nomad/config/outputs.py
CHANGED
@@ -18,17 +18,27 @@ class Headers(dict):
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
name: str,
|
20
20
|
value: str):
|
21
|
+
"""
|
22
|
+
:param str name: The header name
|
23
|
+
:param str value: The header value
|
24
|
+
"""
|
21
25
|
pulumi.set(__self__, "name", name)
|
22
26
|
pulumi.set(__self__, "value", value)
|
23
27
|
|
24
28
|
@property
|
25
29
|
@pulumi.getter
|
26
30
|
def name(self) -> str:
|
31
|
+
"""
|
32
|
+
The header name
|
33
|
+
"""
|
27
34
|
return pulumi.get(self, "name")
|
28
35
|
|
29
36
|
@property
|
30
37
|
@pulumi.getter
|
31
38
|
def value(self) -> str:
|
39
|
+
"""
|
40
|
+
The header value
|
41
|
+
"""
|
32
42
|
return pulumi.get(self, "value")
|
33
43
|
|
34
44
|
|
pulumi_nomad/outputs.py
CHANGED
@@ -124,6 +124,18 @@ class AclAuthMethodConfig(dict):
|
|
124
124
|
list_claim_mappings: Optional[Mapping[str, str]] = None,
|
125
125
|
oidc_scopes: Optional[Sequence[str]] = None,
|
126
126
|
signing_algs: Optional[Sequence[str]] = None):
|
127
|
+
"""
|
128
|
+
:param Sequence[str] allowed_redirect_uris: A list of allowed values that can be used for the redirect URI.
|
129
|
+
:param str oidc_client_id: The OAuth Client ID configured with the OIDC provider.
|
130
|
+
:param str oidc_client_secret: The OAuth Client Secret configured with the OIDC provider.
|
131
|
+
:param str oidc_discovery_url: The OIDC Discovery URL, without any .well-known component (base path).
|
132
|
+
:param Sequence[str] bound_audiences: List of auth claims that are valid for login.
|
133
|
+
:param Mapping[str, str] claim_mappings: Mappings of claims (key) that will be copied to a metadata field (value).
|
134
|
+
:param Sequence[str] discovery_ca_pems: PEM encoded CA certs for use by the TLS client used to talk with the OIDC Discovery URL.
|
135
|
+
:param Mapping[str, str] list_claim_mappings: Mappings of list claims (key) that will be copied to a metadata field (value).
|
136
|
+
:param Sequence[str] oidc_scopes: List of OIDC scopes.
|
137
|
+
:param Sequence[str] signing_algs: A list of supported signing algorithms.
|
138
|
+
"""
|
127
139
|
pulumi.set(__self__, "allowed_redirect_uris", allowed_redirect_uris)
|
128
140
|
pulumi.set(__self__, "oidc_client_id", oidc_client_id)
|
129
141
|
pulumi.set(__self__, "oidc_client_secret", oidc_client_secret)
|
@@ -144,51 +156,81 @@ class AclAuthMethodConfig(dict):
|
|
144
156
|
@property
|
145
157
|
@pulumi.getter(name="allowedRedirectUris")
|
146
158
|
def allowed_redirect_uris(self) -> Sequence[str]:
|
159
|
+
"""
|
160
|
+
A list of allowed values that can be used for the redirect URI.
|
161
|
+
"""
|
147
162
|
return pulumi.get(self, "allowed_redirect_uris")
|
148
163
|
|
149
164
|
@property
|
150
165
|
@pulumi.getter(name="oidcClientId")
|
151
166
|
def oidc_client_id(self) -> str:
|
167
|
+
"""
|
168
|
+
The OAuth Client ID configured with the OIDC provider.
|
169
|
+
"""
|
152
170
|
return pulumi.get(self, "oidc_client_id")
|
153
171
|
|
154
172
|
@property
|
155
173
|
@pulumi.getter(name="oidcClientSecret")
|
156
174
|
def oidc_client_secret(self) -> str:
|
175
|
+
"""
|
176
|
+
The OAuth Client Secret configured with the OIDC provider.
|
177
|
+
"""
|
157
178
|
return pulumi.get(self, "oidc_client_secret")
|
158
179
|
|
159
180
|
@property
|
160
181
|
@pulumi.getter(name="oidcDiscoveryUrl")
|
161
182
|
def oidc_discovery_url(self) -> str:
|
183
|
+
"""
|
184
|
+
The OIDC Discovery URL, without any .well-known component (base path).
|
185
|
+
"""
|
162
186
|
return pulumi.get(self, "oidc_discovery_url")
|
163
187
|
|
164
188
|
@property
|
165
189
|
@pulumi.getter(name="boundAudiences")
|
166
190
|
def bound_audiences(self) -> Optional[Sequence[str]]:
|
191
|
+
"""
|
192
|
+
List of auth claims that are valid for login.
|
193
|
+
"""
|
167
194
|
return pulumi.get(self, "bound_audiences")
|
168
195
|
|
169
196
|
@property
|
170
197
|
@pulumi.getter(name="claimMappings")
|
171
198
|
def claim_mappings(self) -> Optional[Mapping[str, str]]:
|
199
|
+
"""
|
200
|
+
Mappings of claims (key) that will be copied to a metadata field (value).
|
201
|
+
"""
|
172
202
|
return pulumi.get(self, "claim_mappings")
|
173
203
|
|
174
204
|
@property
|
175
205
|
@pulumi.getter(name="discoveryCaPems")
|
176
206
|
def discovery_ca_pems(self) -> Optional[Sequence[str]]:
|
207
|
+
"""
|
208
|
+
PEM encoded CA certs for use by the TLS client used to talk with the OIDC Discovery URL.
|
209
|
+
"""
|
177
210
|
return pulumi.get(self, "discovery_ca_pems")
|
178
211
|
|
179
212
|
@property
|
180
213
|
@pulumi.getter(name="listClaimMappings")
|
181
214
|
def list_claim_mappings(self) -> Optional[Mapping[str, str]]:
|
215
|
+
"""
|
216
|
+
Mappings of list claims (key) that will be copied to a metadata field (value).
|
217
|
+
"""
|
182
218
|
return pulumi.get(self, "list_claim_mappings")
|
183
219
|
|
184
220
|
@property
|
185
221
|
@pulumi.getter(name="oidcScopes")
|
186
222
|
def oidc_scopes(self) -> Optional[Sequence[str]]:
|
223
|
+
"""
|
224
|
+
List of OIDC scopes.
|
225
|
+
"""
|
187
226
|
return pulumi.get(self, "oidc_scopes")
|
188
227
|
|
189
228
|
@property
|
190
229
|
@pulumi.getter(name="signingAlgs")
|
191
230
|
def signing_algs(self) -> Optional[Sequence[str]]:
|
231
|
+
"""
|
232
|
+
A list of supported signing algorithms.
|
233
|
+
"""
|
192
234
|
return pulumi.get(self, "signing_algs")
|
193
235
|
|
194
236
|
|
@@ -297,6 +339,7 @@ class AclTokenRole(dict):
|
|
297
339
|
id: str,
|
298
340
|
name: Optional[str] = None):
|
299
341
|
"""
|
342
|
+
:param str id: The ID of the ACL role to link.
|
300
343
|
:param str name: `(string: "")` - A human-friendly name for this token.
|
301
344
|
"""
|
302
345
|
pulumi.set(__self__, "id", id)
|
@@ -306,6 +349,9 @@ class AclTokenRole(dict):
|
|
306
349
|
@property
|
307
350
|
@pulumi.getter
|
308
351
|
def id(self) -> str:
|
352
|
+
"""
|
353
|
+
The ID of the ACL role to link.
|
354
|
+
"""
|
309
355
|
return pulumi.get(self, "id")
|
310
356
|
|
311
357
|
@property
|
@@ -1047,6 +1093,7 @@ class JobHcl2(dict):
|
|
1047
1093
|
HCL2 filesystem functions
|
1048
1094
|
:param bool enabled: `(boolean: false)` - **Deprecated** All HCL jobs are parsed as
|
1049
1095
|
HCL2 by default.
|
1096
|
+
:param Mapping[str, Any] vars: Additional variables to use when templating the job with HCL2
|
1050
1097
|
"""
|
1051
1098
|
if allow_fs is not None:
|
1052
1099
|
pulumi.set(__self__, "allow_fs", allow_fs)
|
@@ -1079,6 +1126,9 @@ class JobHcl2(dict):
|
|
1079
1126
|
@property
|
1080
1127
|
@pulumi.getter
|
1081
1128
|
def vars(self) -> Optional[Mapping[str, Any]]:
|
1129
|
+
"""
|
1130
|
+
Additional variables to use when templating the job with HCL2
|
1131
|
+
"""
|
1082
1132
|
return pulumi.get(self, "vars")
|
1083
1133
|
|
1084
1134
|
|
@@ -1866,6 +1916,7 @@ class GetAclTokenRoleResult(dict):
|
|
1866
1916
|
id: str,
|
1867
1917
|
name: str):
|
1868
1918
|
"""
|
1919
|
+
:param str id: The ID of the ACL role.
|
1869
1920
|
:param str name: `(string)` Non-sensitive identifier for this token.
|
1870
1921
|
"""
|
1871
1922
|
pulumi.set(__self__, "id", id)
|
@@ -1874,6 +1925,9 @@ class GetAclTokenRoleResult(dict):
|
|
1874
1925
|
@property
|
1875
1926
|
@pulumi.getter
|
1876
1927
|
def id(self) -> str:
|
1928
|
+
"""
|
1929
|
+
The ID of the ACL role.
|
1930
|
+
"""
|
1877
1931
|
return pulumi.get(self, "id")
|
1878
1932
|
|
1879
1933
|
@property
|
@@ -1990,6 +2044,7 @@ class GetAclTokensAclTokenRoleResult(dict):
|
|
1990
2044
|
id: str,
|
1991
2045
|
name: str):
|
1992
2046
|
"""
|
2047
|
+
:param str id: The ID of the ACL role.
|
1993
2048
|
:param str name: `(TypeString)` The name of the token.
|
1994
2049
|
"""
|
1995
2050
|
pulumi.set(__self__, "id", id)
|
@@ -1998,6 +2053,9 @@ class GetAclTokensAclTokenRoleResult(dict):
|
|
1998
2053
|
@property
|
1999
2054
|
@pulumi.getter
|
2000
2055
|
def id(self) -> str:
|
2056
|
+
"""
|
2057
|
+
The ID of the ACL role.
|
2058
|
+
"""
|
2001
2059
|
return pulumi.get(self, "id")
|
2002
2060
|
|
2003
2061
|
@property
|
{pulumi_nomad-2.1.0a1706693590.dist-info → pulumi_nomad-2.2.0a1706812334.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_nomad
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.2.0a1706812334
|
4
4
|
Summary: A Pulumi package for creating and managing nomad cloud resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
12
|
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
13
13
|
Requires-Dist: semver >=2.8.1
|
14
|
+
Requires-Dist: importlib-metadata <7.0.0,>=6.0.0 ; python_version < "3.8"
|
14
15
|
|
15
16
|
[](https://github.com/pulumi/pulumi-nomad/actions)
|
16
17
|
[](https://slack.pulumi.com)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
pulumi_nomad/__init__.py,sha256=QUArXGICF8dmn0esax2QRn_bSJNVdbfnLlaahZRlmAU,4332
|
2
|
-
pulumi_nomad/_inputs.py,sha256=
|
3
|
-
pulumi_nomad/_utilities.py,sha256=
|
2
|
+
pulumi_nomad/_inputs.py,sha256=hDpVMghbzcMFDY7JD0jYRNLNUIJqqWv-vHAik_NH104,71991
|
3
|
+
pulumi_nomad/_utilities.py,sha256=jMbim532bPc1u3rZevJSaM4zw6tbQPf2c85Dkyq_7_g,9327
|
4
4
|
pulumi_nomad/acl_auth_method.py,sha256=Tp3ow4U8qa-kg4g-3Qzu87h_GW2YqNg5tSijMKcm71E,23599
|
5
5
|
pulumi_nomad/acl_binding_rule.py,sha256=7YZsOVUoabSUsThSiusJBju9S5kYcQGAclPqqRjj3PY,16396
|
6
6
|
pulumi_nomad/acl_policy.py,sha256=t1coaWYlkmx7IZIpG3eza4tq8Z_vzZgbjEgYukO_lvA,13550
|
@@ -35,7 +35,7 @@ pulumi_nomad/get_volumes.py,sha256=bxPF8gchK6FhEJcySOi5cnxg0e0bn7xnTvk-2D36vxI,5
|
|
35
35
|
pulumi_nomad/job.py,sha256=YMuoAetXRNpQCt4NF15_aIjKIIj9Do9AoSFphqddxzw,51983
|
36
36
|
pulumi_nomad/namespace.py,sha256=dCreO2T1cDQdLQJe976q04D2hqHTbYZrg5mIVkiDuRQ,20349
|
37
37
|
pulumi_nomad/node_pool.py,sha256=cc7XCrKVakbhKmQLQTPgqLIzcoAnSVDOv8q6hgpwUeg,13078
|
38
|
-
pulumi_nomad/outputs.py,sha256=
|
38
|
+
pulumi_nomad/outputs.py,sha256=qI_vtxW4enOynlXgZcTY7eBSMhlM2ji7NxpTxrv9daM,98648
|
39
39
|
pulumi_nomad/provider.py,sha256=kXiczhVPifjDrveY1h4jz1sqGvu8ahRNbh-f3QLDuew,21549
|
40
40
|
pulumi_nomad/pulumi-plugin.json,sha256=2s0bEeojFder0tplFBIeTqy2h7Y8kNsJQ696Q6gJHqU,42
|
41
41
|
pulumi_nomad/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -46,9 +46,9 @@ pulumi_nomad/variable.py,sha256=__xAfv3nJuPHxOCkxFdDh8UX-qUMjZe5IgezmbKfOY8,1152
|
|
46
46
|
pulumi_nomad/volume.py,sha256=d7gUAeMfHqO0mModJ4hNhxEa4xXLYGX9WXkg8sYDydA,57315
|
47
47
|
pulumi_nomad/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
48
48
|
pulumi_nomad/config/__init__.pyi,sha256=xqQrj9Co22MZN1IMoQwefoce6b6zI5nQfuA4L_uqw3Q,1865
|
49
|
-
pulumi_nomad/config/outputs.py,sha256=
|
49
|
+
pulumi_nomad/config/outputs.py,sha256=EJXQtJx8CPqK4-XlVBLC4rbjzI1AVUBUrOjFgyxwtuk,1003
|
50
50
|
pulumi_nomad/config/vars.py,sha256=pNNlDdaVJeMKr6TPOOJ4wW-_KPneYFizgpPjUIxa9rU,3432
|
51
|
-
pulumi_nomad-2.
|
52
|
-
pulumi_nomad-2.
|
53
|
-
pulumi_nomad-2.
|
54
|
-
pulumi_nomad-2.
|
51
|
+
pulumi_nomad-2.2.0a1706812334.dist-info/METADATA,sha256=95jLEXvLTsbgCFsrApJDpKduv5xdFrx8WTdPni9PZTc,4804
|
52
|
+
pulumi_nomad-2.2.0a1706812334.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
53
|
+
pulumi_nomad-2.2.0a1706812334.dist-info/top_level.txt,sha256=1JxoZWssmXqN-8vVDXtedeoWtI703uNWUOzlm8Byv-o,13
|
54
|
+
pulumi_nomad-2.2.0a1706812334.dist-info/RECORD,,
|
File without changes
|
{pulumi_nomad-2.1.0a1706693590.dist-info → pulumi_nomad-2.2.0a1706812334.dist-info}/top_level.txt
RENAMED
File without changes
|