pulumi-tls 5.0.8__py3-none-any.whl → 5.0.9__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_tls/_inputs.py +113 -0
- pulumi_tls/_utilities.py +1 -1
- pulumi_tls/cert_request.py +5 -0
- pulumi_tls/config/__init__.pyi +5 -0
- pulumi_tls/config/outputs.py +5 -0
- pulumi_tls/config/vars.py +5 -0
- pulumi_tls/get_certificate.py +17 -4
- pulumi_tls/get_public_key.py +19 -4
- pulumi_tls/locally_signed_cert.py +5 -0
- pulumi_tls/outputs.py +5 -0
- pulumi_tls/private_key.py +5 -0
- pulumi_tls/provider.py +5 -0
- pulumi_tls/pulumi-plugin.json +1 -1
- pulumi_tls/self_signed_cert.py +5 -0
- {pulumi_tls-5.0.8.dist-info → pulumi_tls-5.0.9.dist-info}/METADATA +3 -2
- pulumi_tls-5.0.9.dist-info/RECORD +21 -0
- {pulumi_tls-5.0.8.dist-info → pulumi_tls-5.0.9.dist-info}/WHEEL +1 -1
- pulumi_tls-5.0.8.dist-info/RECORD +0 -21
- {pulumi_tls-5.0.8.dist-info → pulumi_tls-5.0.9.dist-info}/top_level.txt +0 -0
pulumi_tls/_inputs.py
CHANGED
@@ -4,17 +4,68 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
'CertRequestSubjectArgs',
|
19
|
+
'CertRequestSubjectArgsDict',
|
14
20
|
'ProviderProxyArgs',
|
21
|
+
'ProviderProxyArgsDict',
|
15
22
|
'SelfSignedCertSubjectArgs',
|
23
|
+
'SelfSignedCertSubjectArgsDict',
|
16
24
|
]
|
17
25
|
|
26
|
+
MYPY = False
|
27
|
+
|
28
|
+
if not MYPY:
|
29
|
+
class CertRequestSubjectArgsDict(TypedDict):
|
30
|
+
common_name: NotRequired[pulumi.Input[str]]
|
31
|
+
"""
|
32
|
+
Distinguished name: `CN`
|
33
|
+
"""
|
34
|
+
country: NotRequired[pulumi.Input[str]]
|
35
|
+
"""
|
36
|
+
Distinguished name: `C`
|
37
|
+
"""
|
38
|
+
locality: NotRequired[pulumi.Input[str]]
|
39
|
+
"""
|
40
|
+
Distinguished name: `L`
|
41
|
+
"""
|
42
|
+
organization: NotRequired[pulumi.Input[str]]
|
43
|
+
"""
|
44
|
+
Distinguished name: `O`
|
45
|
+
"""
|
46
|
+
organizational_unit: NotRequired[pulumi.Input[str]]
|
47
|
+
"""
|
48
|
+
Distinguished name: `OU`
|
49
|
+
"""
|
50
|
+
postal_code: NotRequired[pulumi.Input[str]]
|
51
|
+
"""
|
52
|
+
Distinguished name: `PC`
|
53
|
+
"""
|
54
|
+
province: NotRequired[pulumi.Input[str]]
|
55
|
+
"""
|
56
|
+
Distinguished name: `ST`
|
57
|
+
"""
|
58
|
+
serial_number: NotRequired[pulumi.Input[str]]
|
59
|
+
"""
|
60
|
+
Distinguished name: `SERIALNUMBER`
|
61
|
+
"""
|
62
|
+
street_addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
63
|
+
"""
|
64
|
+
Distinguished name: `STREET`
|
65
|
+
"""
|
66
|
+
elif False:
|
67
|
+
CertRequestSubjectArgsDict: TypeAlias = Mapping[str, Any]
|
68
|
+
|
18
69
|
@pulumi.input_type
|
19
70
|
class CertRequestSubjectArgs:
|
20
71
|
def __init__(__self__, *,
|
@@ -166,6 +217,27 @@ class CertRequestSubjectArgs:
|
|
166
217
|
pulumi.set(self, "street_addresses", value)
|
167
218
|
|
168
219
|
|
220
|
+
if not MYPY:
|
221
|
+
class ProviderProxyArgsDict(TypedDict):
|
222
|
+
from_env: NotRequired[pulumi.Input[bool]]
|
223
|
+
"""
|
224
|
+
When `true` the provider will discover the proxy configuration from environment variables. This is based upon [`http.ProxyFromEnvironment`](https://pkg.go.dev/net/http#ProxyFromEnvironment) and it supports the same environment variables (default: `true`).
|
225
|
+
"""
|
226
|
+
password: NotRequired[pulumi.Input[str]]
|
227
|
+
"""
|
228
|
+
Password used for Basic authentication against the Proxy.
|
229
|
+
"""
|
230
|
+
url: NotRequired[pulumi.Input[str]]
|
231
|
+
"""
|
232
|
+
URL used to connect to the Proxy. Accepted schemes are: `http`, `https`, `socks5`.
|
233
|
+
"""
|
234
|
+
username: NotRequired[pulumi.Input[str]]
|
235
|
+
"""
|
236
|
+
Username (or Token) used for Basic authentication against the Proxy.
|
237
|
+
"""
|
238
|
+
elif False:
|
239
|
+
ProviderProxyArgsDict: TypeAlias = Mapping[str, Any]
|
240
|
+
|
169
241
|
@pulumi.input_type
|
170
242
|
class ProviderProxyArgs:
|
171
243
|
def __init__(__self__, *,
|
@@ -237,6 +309,47 @@ class ProviderProxyArgs:
|
|
237
309
|
pulumi.set(self, "username", value)
|
238
310
|
|
239
311
|
|
312
|
+
if not MYPY:
|
313
|
+
class SelfSignedCertSubjectArgsDict(TypedDict):
|
314
|
+
common_name: NotRequired[pulumi.Input[str]]
|
315
|
+
"""
|
316
|
+
Distinguished name: `CN`
|
317
|
+
"""
|
318
|
+
country: NotRequired[pulumi.Input[str]]
|
319
|
+
"""
|
320
|
+
Distinguished name: `C`
|
321
|
+
"""
|
322
|
+
locality: NotRequired[pulumi.Input[str]]
|
323
|
+
"""
|
324
|
+
Distinguished name: `L`
|
325
|
+
"""
|
326
|
+
organization: NotRequired[pulumi.Input[str]]
|
327
|
+
"""
|
328
|
+
Distinguished name: `O`
|
329
|
+
"""
|
330
|
+
organizational_unit: NotRequired[pulumi.Input[str]]
|
331
|
+
"""
|
332
|
+
Distinguished name: `OU`
|
333
|
+
"""
|
334
|
+
postal_code: NotRequired[pulumi.Input[str]]
|
335
|
+
"""
|
336
|
+
Distinguished name: `PC`
|
337
|
+
"""
|
338
|
+
province: NotRequired[pulumi.Input[str]]
|
339
|
+
"""
|
340
|
+
Distinguished name: `ST`
|
341
|
+
"""
|
342
|
+
serial_number: NotRequired[pulumi.Input[str]]
|
343
|
+
"""
|
344
|
+
Distinguished name: `SERIALNUMBER`
|
345
|
+
"""
|
346
|
+
street_addresses: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
347
|
+
"""
|
348
|
+
Distinguished name: `STREET`
|
349
|
+
"""
|
350
|
+
elif False:
|
351
|
+
SelfSignedCertSubjectArgsDict: TypeAlias = Mapping[str, Any]
|
352
|
+
|
240
353
|
@pulumi.input_type
|
241
354
|
class SelfSignedCertSubjectArgs:
|
242
355
|
def __init__(__self__, *,
|
pulumi_tls/_utilities.py
CHANGED
@@ -264,7 +264,7 @@ def call_plain(
|
|
264
264
|
output = pulumi.runtime.call(tok, props, res, typ)
|
265
265
|
|
266
266
|
# Ingoring deps silently. They are typically non-empty, r.f() calls include r as a dependency.
|
267
|
-
result, known, secret, _ = _sync_await(asyncio.
|
267
|
+
result, known, secret, _ = _sync_await(asyncio.create_task(_await_output(output)))
|
268
268
|
|
269
269
|
problem = None
|
270
270
|
if not known:
|
pulumi_tls/cert_request.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
pulumi_tls/config/__init__.pyi
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
pulumi_tls/config/outputs.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
pulumi_tls/config/vars.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from .. import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
pulumi_tls/get_certificate.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
|
@@ -117,9 +122,6 @@ def get_certificate(content: Optional[str] = None,
|
|
117
122
|
id=pulumi.get(__ret__, 'id'),
|
118
123
|
url=pulumi.get(__ret__, 'url'),
|
119
124
|
verify_chain=pulumi.get(__ret__, 'verify_chain'))
|
120
|
-
|
121
|
-
|
122
|
-
@_utilities.lift_output_func(get_certificate)
|
123
125
|
def get_certificate_output(content: Optional[pulumi.Input[Optional[str]]] = None,
|
124
126
|
url: Optional[pulumi.Input[Optional[str]]] = None,
|
125
127
|
verify_chain: Optional[pulumi.Input[Optional[bool]]] = None,
|
@@ -131,4 +133,15 @@ def get_certificate_output(content: Optional[pulumi.Input[Optional[str]]] = None
|
|
131
133
|
:param str url: The URL of the website to get the certificates from. Cannot be used with `content`.
|
132
134
|
:param bool verify_chain: Whether to verify the certificate chain while parsing it or not (default: `true`). Cannot be used with `content`.
|
133
135
|
"""
|
134
|
-
|
136
|
+
__args__ = dict()
|
137
|
+
__args__['content'] = content
|
138
|
+
__args__['url'] = url
|
139
|
+
__args__['verifyChain'] = verify_chain
|
140
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
141
|
+
__ret__ = pulumi.runtime.invoke_output('tls:index/getCertificate:getCertificate', __args__, opts=opts, typ=GetCertificateResult)
|
142
|
+
return __ret__.apply(lambda __response__: GetCertificateResult(
|
143
|
+
certificates=pulumi.get(__response__, 'certificates'),
|
144
|
+
content=pulumi.get(__response__, 'content'),
|
145
|
+
id=pulumi.get(__response__, 'id'),
|
146
|
+
url=pulumi.get(__response__, 'url'),
|
147
|
+
verify_chain=pulumi.get(__response__, 'verify_chain')))
|
pulumi_tls/get_public_key.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
@@ -169,9 +174,6 @@ def get_public_key(private_key_openssh: Optional[str] = None,
|
|
169
174
|
public_key_fingerprint_sha256=pulumi.get(__ret__, 'public_key_fingerprint_sha256'),
|
170
175
|
public_key_openssh=pulumi.get(__ret__, 'public_key_openssh'),
|
171
176
|
public_key_pem=pulumi.get(__ret__, 'public_key_pem'))
|
172
|
-
|
173
|
-
|
174
|
-
@_utilities.lift_output_func(get_public_key)
|
175
177
|
def get_public_key_output(private_key_openssh: Optional[pulumi.Input[Optional[str]]] = None,
|
176
178
|
private_key_pem: Optional[pulumi.Input[Optional[str]]] = None,
|
177
179
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPublicKeyResult]:
|
@@ -198,4 +200,17 @@ def get_public_key_output(private_key_openssh: Optional[pulumi.Input[Optional[st
|
|
198
200
|
:param str private_key_openssh: The private key (in [OpenSSH PEM (RFC 4716)](https://datatracker.ietf.org/doc/html/rfc4716) format) to extract the public key from. This is *mutually exclusive* with `private_key_pem`. Currently-supported algorithms for keys are: `RSA`, `ECDSA`, `ED25519`.
|
199
201
|
:param str private_key_pem: The private key (in [PEM (RFC 1421)](https://datatracker.ietf.org/doc/html/rfc1421) format) to extract the public key from. This is *mutually exclusive* with `private_key_openssh`. Currently-supported algorithms for keys are: `RSA`, `ECDSA`, `ED25519`.
|
200
202
|
"""
|
201
|
-
|
203
|
+
__args__ = dict()
|
204
|
+
__args__['privateKeyOpenssh'] = private_key_openssh
|
205
|
+
__args__['privateKeyPem'] = private_key_pem
|
206
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
207
|
+
__ret__ = pulumi.runtime.invoke_output('tls:index/getPublicKey:getPublicKey', __args__, opts=opts, typ=GetPublicKeyResult)
|
208
|
+
return __ret__.apply(lambda __response__: GetPublicKeyResult(
|
209
|
+
algorithm=pulumi.get(__response__, 'algorithm'),
|
210
|
+
id=pulumi.get(__response__, 'id'),
|
211
|
+
private_key_openssh=pulumi.get(__response__, 'private_key_openssh'),
|
212
|
+
private_key_pem=pulumi.get(__response__, 'private_key_pem'),
|
213
|
+
public_key_fingerprint_md5=pulumi.get(__response__, 'public_key_fingerprint_md5'),
|
214
|
+
public_key_fingerprint_sha256=pulumi.get(__response__, 'public_key_fingerprint_sha256'),
|
215
|
+
public_key_openssh=pulumi.get(__response__, 'public_key_openssh'),
|
216
|
+
public_key_pem=pulumi.get(__response__, 'public_key_pem')))
|
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['LocallySignedCertArgs', 'LocallySignedCert']
|
pulumi_tls/outputs.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = [
|
pulumi_tls/private_key.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
|
12
17
|
__all__ = ['PrivateKeyArgs', 'PrivateKey']
|
pulumi_tls/provider.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from ._inputs import *
|
12
17
|
|
pulumi_tls/pulumi-plugin.json
CHANGED
pulumi_tls/self_signed_cert.py
CHANGED
@@ -4,9 +4,14 @@
|
|
4
4
|
|
5
5
|
import copy
|
6
6
|
import warnings
|
7
|
+
import sys
|
7
8
|
import pulumi
|
8
9
|
import pulumi.runtime
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
10
15
|
from . import _utilities
|
11
16
|
from . import outputs
|
12
17
|
from ._inputs import *
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_tls
|
3
|
-
Version: 5.0.
|
3
|
+
Version: 5.0.9
|
4
4
|
Summary: A Pulumi package to create TLS resources in Pulumi programs.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
@@ -9,8 +9,9 @@ Keywords: pulumi,tls
|
|
9
9
|
Requires-Python: >=3.8
|
10
10
|
Description-Content-Type: text/markdown
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
|
-
Requires-Dist: pulumi <4.0.0,>=3.
|
12
|
+
Requires-Dist: pulumi <4.0.0,>=3.136.0
|
13
13
|
Requires-Dist: semver >=2.8.1
|
14
|
+
Requires-Dist: typing-extensions >=4.11 ; python_version < "3.11"
|
14
15
|
|
15
16
|
[](https://github.com/pulumi/pulumi-tls/actions)
|
16
17
|
[](https://slack.pulumi.com)
|
@@ -0,0 +1,21 @@
|
|
1
|
+
pulumi_tls/__init__.py,sha256=Fk7hjyRIMx42E0iGoNp4d238SBG6PAUxDzvlIndTJck,1523
|
2
|
+
pulumi_tls/_inputs.py,sha256=PQxQn6BDHAQwXF-qvyfIdMAbsixOzmzKym5ANi10wIU,17876
|
3
|
+
pulumi_tls/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
4
|
+
pulumi_tls/cert_request.py,sha256=R5fJPBIewv1tIx7nqOUj9PL9tmxeFgShMmYXeVeXE1U,23043
|
5
|
+
pulumi_tls/get_certificate.py,sha256=ApTFJbPby1SO_eFNVUU9S2yGrofOTX5ed8PLY0FAUaA,6335
|
6
|
+
pulumi_tls/get_public_key.py,sha256=3TLZVgW96qWB9iXWzDFSknQfYDwgXpdDLh1PlfTdr5Q,12334
|
7
|
+
pulumi_tls/locally_signed_cert.py,sha256=WStwmPMzTraFvM9hUJ3PQHoug62hkhM_YESzugEtGdU,38405
|
8
|
+
pulumi_tls/outputs.py,sha256=9Q2gHOiTBCNAhI7p6J9POXrctjp3avC-89hVlfo8ia4,15751
|
9
|
+
pulumi_tls/private_key.py,sha256=isK_78l0Hhm_OKaOq546gDPTkwFDZG_VP7thH1e_YSI,25535
|
10
|
+
pulumi_tls/provider.py,sha256=kozHxv6INMJ2zUDv2d8TQmJGr7uFVHPoieddw0M3iPo,4787
|
11
|
+
pulumi_tls/pulumi-plugin.json,sha256=w3pky4bvSUZj0pKzZYWO0Seux0I0v59-ai7IPp3JCwE,62
|
12
|
+
pulumi_tls/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
pulumi_tls/self_signed_cert.py,sha256=pocshB1RvT2FaDlcKRasq8sbT5lW1-XNkWKwoRttFQw,48642
|
14
|
+
pulumi_tls/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
15
|
+
pulumi_tls/config/__init__.pyi,sha256=fnsZ-Suvu3YbJRGB-tjcmI1mjoq0AzdZXUZHXdbnNCk,648
|
16
|
+
pulumi_tls/config/outputs.py,sha256=zzpj6leD9hzCMjZXOO0Pz53IdeDBUZbiPjr-HrSicWw,2827
|
17
|
+
pulumi_tls/config/vars.py,sha256=IIfZBN532Qh-2Z1O5ANibIraohA229yGyNP03b-PmNY,835
|
18
|
+
pulumi_tls-5.0.9.dist-info/METADATA,sha256=JFSJy9sOO5xWiGZvfvVmpRqKr8rma8eAP6HG2VmIYLA,2484
|
19
|
+
pulumi_tls-5.0.9.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
20
|
+
pulumi_tls-5.0.9.dist-info/top_level.txt,sha256=w0yJOTuCUb1BpNsSTm0FJZPucueobFIfzPGzjYklx1U,11
|
21
|
+
pulumi_tls-5.0.9.dist-info/RECORD,,
|
@@ -1,21 +0,0 @@
|
|
1
|
-
pulumi_tls/__init__.py,sha256=Fk7hjyRIMx42E0iGoNp4d238SBG6PAUxDzvlIndTJck,1523
|
2
|
-
pulumi_tls/_inputs.py,sha256=KVpnu-mvOyzrpVpdrb90KBWDhaN_i67rIkdR3d8qJlw,14351
|
3
|
-
pulumi_tls/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
4
|
-
pulumi_tls/cert_request.py,sha256=J-nSLGCQ-DY3z1P6784HiWeHuLDyCJlR3M903CA9spQ,22869
|
5
|
-
pulumi_tls/get_certificate.py,sha256=lUy1OLl5oA8GbQnOeVy6F7Sfd8pWSgCnZ1g9gV9Jr30,5540
|
6
|
-
pulumi_tls/get_public_key.py,sha256=JjrZKMzNVnrpX2TqusoO16NznvX9bgtqOrGxINuQPwk,11236
|
7
|
-
pulumi_tls/locally_signed_cert.py,sha256=042i5knGaEU0Ry7mGiWsm5FuaI73JBjU25gtoLAwyek,38231
|
8
|
-
pulumi_tls/outputs.py,sha256=c0gKt8fbu5LXJVKo3U_dqPvh-HGwg26hwitgd2saRfs,15577
|
9
|
-
pulumi_tls/private_key.py,sha256=PjQ6g4ziNLrlrh63q4lWMDAWh78XquAKJI_WJjuy0yQ,25361
|
10
|
-
pulumi_tls/provider.py,sha256=SL708ouDW7KsIDLhTE123QNkg9CWMENzCx9j4rrncHI,4613
|
11
|
-
pulumi_tls/pulumi-plugin.json,sha256=ux4eawnKZLZSCNsLOBRVhv4tYkYXTpaf1HzdaXfu_QI,62
|
12
|
-
pulumi_tls/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
pulumi_tls/self_signed_cert.py,sha256=1C1qkRwOMTljf_AZV5cZtlT9ruT_kVYsMdKdjoFGmsI,48468
|
14
|
-
pulumi_tls/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
15
|
-
pulumi_tls/config/__init__.pyi,sha256=kaPJpeRs8A7zNA-3MY-QL0zyxMV0oqUrYrsLj3HpqEg,474
|
16
|
-
pulumi_tls/config/outputs.py,sha256=SYfBlhKnqFeIaEpQLFgdBfABD4pzTkAlZTuwWWsGQ4A,2653
|
17
|
-
pulumi_tls/config/vars.py,sha256=wTZ5QbW-pH76tJ5PSA2zAFV4bPdtC5pmxQsV7jRd3c8,661
|
18
|
-
pulumi_tls-5.0.8.dist-info/METADATA,sha256=FUKG1ZZsPl_nGIpzIxoCod6ZxkzDYzuDbGGglNtdObo,2416
|
19
|
-
pulumi_tls-5.0.8.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
20
|
-
pulumi_tls-5.0.8.dist-info/top_level.txt,sha256=w0yJOTuCUb1BpNsSTm0FJZPucueobFIfzPGzjYklx1U,11
|
21
|
-
pulumi_tls-5.0.8.dist-info/RECORD,,
|
File without changes
|