pulumi-venafi 1.12.0a1754722164__py3-none-any.whl → 1.12.0a1755154024__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.
Potentially problematic release.
This version of pulumi-venafi might be problematic. Click here for more details.
- pulumi_venafi/config/__init__.pyi +7 -1
- pulumi_venafi/config/vars.py +9 -1
- pulumi_venafi/provider.py +36 -4
- pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.12.0a1754722164.dist-info → pulumi_venafi-1.12.0a1755154024.dist-info}/METADATA +1 -1
- {pulumi_venafi-1.12.0a1754722164.dist-info → pulumi_venafi-1.12.0a1755154024.dist-info}/RECORD +8 -8
- {pulumi_venafi-1.12.0a1754722164.dist-info → pulumi_venafi-1.12.0a1755154024.dist-info}/WHEEL +0 -0
- {pulumi_venafi-1.12.0a1754722164.dist-info → pulumi_venafi-1.12.0a1755154024.dist-info}/top_level.txt +0 -0
|
@@ -40,6 +40,12 @@ externalJwt: Optional[str]
|
|
|
40
40
|
JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
|
+
p12CertData: Optional[str]
|
|
44
|
+
"""
|
|
45
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
46
|
+
TLSPDC
|
|
47
|
+
"""
|
|
48
|
+
|
|
43
49
|
p12CertFilename: Optional[str]
|
|
44
50
|
"""
|
|
45
51
|
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
@@ -48,7 +54,7 @@ TLSPDC
|
|
|
48
54
|
|
|
49
55
|
p12CertPassword: Optional[str]
|
|
50
56
|
"""
|
|
51
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
57
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
52
58
|
"""
|
|
53
59
|
|
|
54
60
|
skipRetirement: Optional[bool]
|
pulumi_venafi/config/vars.py
CHANGED
|
@@ -56,6 +56,14 @@ class _ExportableConfig(types.ModuleType):
|
|
|
56
56
|
"""
|
|
57
57
|
return __config__.get('externalJwt')
|
|
58
58
|
|
|
59
|
+
@_builtins.property
|
|
60
|
+
def p12_cert_data(self) -> Optional[str]:
|
|
61
|
+
"""
|
|
62
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
63
|
+
TLSPDC
|
|
64
|
+
"""
|
|
65
|
+
return __config__.get('p12CertData')
|
|
66
|
+
|
|
59
67
|
@_builtins.property
|
|
60
68
|
def p12_cert_filename(self) -> Optional[str]:
|
|
61
69
|
"""
|
|
@@ -67,7 +75,7 @@ class _ExportableConfig(types.ModuleType):
|
|
|
67
75
|
@_builtins.property
|
|
68
76
|
def p12_cert_password(self) -> Optional[str]:
|
|
69
77
|
"""
|
|
70
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
78
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
71
79
|
"""
|
|
72
80
|
return __config__.get('p12CertPassword')
|
|
73
81
|
|
pulumi_venafi/provider.py
CHANGED
|
@@ -24,6 +24,7 @@ class ProviderArgs:
|
|
|
24
24
|
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
25
|
dev_mode: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
26
26
|
external_jwt: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
|
+
p12_cert_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
27
28
|
p12_cert_filename: Optional[pulumi.Input[_builtins.str]] = None,
|
|
28
29
|
p12_cert_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
29
30
|
skip_retirement: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -41,9 +42,11 @@ class ProviderArgs:
|
|
|
41
42
|
:param pulumi.Input[_builtins.bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
42
43
|
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
43
44
|
:param pulumi.Input[_builtins.str] external_jwt: JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
|
|
45
|
+
:param pulumi.Input[_builtins.str] p12_cert_data: Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
46
|
+
TLSPDC
|
|
44
47
|
:param pulumi.Input[_builtins.str] p12_cert_filename: Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
45
48
|
TLSPDC
|
|
46
|
-
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert
|
|
49
|
+
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
47
50
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
48
51
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
49
52
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
@@ -63,6 +66,8 @@ class ProviderArgs:
|
|
|
63
66
|
pulumi.set(__self__, "dev_mode", dev_mode)
|
|
64
67
|
if external_jwt is not None:
|
|
65
68
|
pulumi.set(__self__, "external_jwt", external_jwt)
|
|
69
|
+
if p12_cert_data is not None:
|
|
70
|
+
pulumi.set(__self__, "p12_cert_data", p12_cert_data)
|
|
66
71
|
if p12_cert_filename is not None:
|
|
67
72
|
pulumi.set(__self__, "p12_cert_filename", p12_cert_filename)
|
|
68
73
|
if p12_cert_password is not None:
|
|
@@ -149,6 +154,19 @@ class ProviderArgs:
|
|
|
149
154
|
def external_jwt(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
150
155
|
pulumi.set(self, "external_jwt", value)
|
|
151
156
|
|
|
157
|
+
@_builtins.property
|
|
158
|
+
@pulumi.getter(name="p12CertData")
|
|
159
|
+
def p12_cert_data(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
160
|
+
"""
|
|
161
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
162
|
+
TLSPDC
|
|
163
|
+
"""
|
|
164
|
+
return pulumi.get(self, "p12_cert_data")
|
|
165
|
+
|
|
166
|
+
@p12_cert_data.setter
|
|
167
|
+
def p12_cert_data(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
168
|
+
pulumi.set(self, "p12_cert_data", value)
|
|
169
|
+
|
|
152
170
|
@_builtins.property
|
|
153
171
|
@pulumi.getter(name="p12CertFilename")
|
|
154
172
|
def p12_cert_filename(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -166,7 +184,7 @@ class ProviderArgs:
|
|
|
166
184
|
@pulumi.getter(name="p12CertPassword")
|
|
167
185
|
def p12_cert_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
168
186
|
"""
|
|
169
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
187
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
170
188
|
"""
|
|
171
189
|
return pulumi.get(self, "p12_cert_password")
|
|
172
190
|
|
|
@@ -271,6 +289,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
271
289
|
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
272
290
|
dev_mode: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
273
291
|
external_jwt: Optional[pulumi.Input[_builtins.str]] = None,
|
|
292
|
+
p12_cert_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
274
293
|
p12_cert_filename: Optional[pulumi.Input[_builtins.str]] = None,
|
|
275
294
|
p12_cert_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
276
295
|
skip_retirement: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -295,9 +314,11 @@ class Provider(pulumi.ProviderResource):
|
|
|
295
314
|
:param pulumi.Input[_builtins.bool] dev_mode: When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
296
315
|
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
297
316
|
:param pulumi.Input[_builtins.str] external_jwt: JWT of the identity provider associated to the Venafi Control Plane service account that is granting the access token
|
|
317
|
+
:param pulumi.Input[_builtins.str] p12_cert_data: Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
318
|
+
TLSPDC
|
|
298
319
|
:param pulumi.Input[_builtins.str] p12_cert_filename: Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
299
320
|
TLSPDC
|
|
300
|
-
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert
|
|
321
|
+
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
301
322
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
302
323
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
303
324
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
@@ -339,6 +360,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
339
360
|
client_id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
340
361
|
dev_mode: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
341
362
|
external_jwt: Optional[pulumi.Input[_builtins.str]] = None,
|
|
363
|
+
p12_cert_data: Optional[pulumi.Input[_builtins.str]] = None,
|
|
342
364
|
p12_cert_filename: Optional[pulumi.Input[_builtins.str]] = None,
|
|
343
365
|
p12_cert_password: Optional[pulumi.Input[_builtins.str]] = None,
|
|
344
366
|
skip_retirement: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -362,6 +384,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
362
384
|
__props__.__dict__["client_id"] = client_id
|
|
363
385
|
__props__.__dict__["dev_mode"] = pulumi.Output.from_input(dev_mode).apply(pulumi.runtime.to_json) if dev_mode is not None else None
|
|
364
386
|
__props__.__dict__["external_jwt"] = None if external_jwt is None else pulumi.Output.secret(external_jwt)
|
|
387
|
+
__props__.__dict__["p12_cert_data"] = p12_cert_data
|
|
365
388
|
__props__.__dict__["p12_cert_filename"] = p12_cert_filename
|
|
366
389
|
__props__.__dict__["p12_cert_password"] = None if p12_cert_password is None else pulumi.Output.secret(p12_cert_password)
|
|
367
390
|
__props__.__dict__["skip_retirement"] = pulumi.Output.from_input(skip_retirement).apply(pulumi.runtime.to_json) if skip_retirement is not None else None
|
|
@@ -411,6 +434,15 @@ class Provider(pulumi.ProviderResource):
|
|
|
411
434
|
"""
|
|
412
435
|
return pulumi.get(self, "external_jwt")
|
|
413
436
|
|
|
437
|
+
@_builtins.property
|
|
438
|
+
@pulumi.getter(name="p12CertData")
|
|
439
|
+
def p12_cert_data(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
440
|
+
"""
|
|
441
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
442
|
+
TLSPDC
|
|
443
|
+
"""
|
|
444
|
+
return pulumi.get(self, "p12_cert_data")
|
|
445
|
+
|
|
414
446
|
@_builtins.property
|
|
415
447
|
@pulumi.getter(name="p12CertFilename")
|
|
416
448
|
def p12_cert_filename(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
@@ -424,7 +456,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
424
456
|
@pulumi.getter(name="p12CertPassword")
|
|
425
457
|
def p12_cert_password(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
426
458
|
"""
|
|
427
|
-
Password for the PKCS#12 keystore declared in p12_cert
|
|
459
|
+
Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
428
460
|
"""
|
|
429
461
|
return pulumi.get(self, "p12_cert_password")
|
|
430
462
|
|
pulumi_venafi/pulumi-plugin.json
CHANGED
{pulumi_venafi-1.12.0a1754722164.dist-info → pulumi_venafi-1.12.0a1755154024.dist-info}/RECORD
RENAMED
|
@@ -5,15 +5,15 @@ pulumi_venafi/cloud_keystore_installation.py,sha256=V3B2V9PrDYpRi27Kvm0wDqFa2D_u
|
|
|
5
5
|
pulumi_venafi/get_cloud_keystore.py,sha256=svYPOyqizrLEUSApjrkQv5_a8Z_LPcO6RZ5HAMxKOLo,7050
|
|
6
6
|
pulumi_venafi/get_cloud_provider.py,sha256=7jVHrBl28kEIMHW3xgKgDIC-7xm7YiI_HmeL3TfXgyw,6181
|
|
7
7
|
pulumi_venafi/policy.py,sha256=pQo2E6SmnrY60cGMVI8hMYYDZoeZupCQVu0gNRK6duQ,12272
|
|
8
|
-
pulumi_venafi/provider.py,sha256=
|
|
9
|
-
pulumi_venafi/pulumi-plugin.json,sha256=
|
|
8
|
+
pulumi_venafi/provider.py,sha256=hGhvcob4_0_UCywr0TXPQh95GMviQSwIU7_eTeaAI14,27028
|
|
9
|
+
pulumi_venafi/pulumi-plugin.json,sha256=s_pqOsye9WG0iL7hKIk-bFAIqfx9YtMaTcKdZm6r-xE,83
|
|
10
10
|
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
pulumi_venafi/ssh_certificate.py,sha256=aumPqIZbWWHF_7BG3t3OdmrOBW04vDDg0fuVwloed50,57662
|
|
12
12
|
pulumi_venafi/ssh_config.py,sha256=UsZqU43kknxiqU4z_EpvAsFWykO9k1mTaQFXCsDtP88,9084
|
|
13
13
|
pulumi_venafi/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
|
|
14
|
-
pulumi_venafi/config/__init__.pyi,sha256=
|
|
15
|
-
pulumi_venafi/config/vars.py,sha256=
|
|
16
|
-
pulumi_venafi-1.12.
|
|
17
|
-
pulumi_venafi-1.12.
|
|
18
|
-
pulumi_venafi-1.12.
|
|
19
|
-
pulumi_venafi-1.12.
|
|
14
|
+
pulumi_venafi/config/__init__.pyi,sha256=NGFie-w3tGvNxEpUJ-T5ggUm_yhfZZX6UBjgaxFx40s,2476
|
|
15
|
+
pulumi_venafi/config/vars.py,sha256=cvdTKZzgdLcEKYcx1sLc7kpwnZF2xLb6eROrU5ZYPTg,4245
|
|
16
|
+
pulumi_venafi-1.12.0a1755154024.dist-info/METADATA,sha256=TvJIRpNTXGyAsFTNxTDjDi8ccMaG2GQZaAqCPpOwjxU,3677
|
|
17
|
+
pulumi_venafi-1.12.0a1755154024.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
18
|
+
pulumi_venafi-1.12.0a1755154024.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
+
pulumi_venafi-1.12.0a1755154024.dist-info/RECORD,,
|
{pulumi_venafi-1.12.0a1754722164.dist-info → pulumi_venafi-1.12.0a1755154024.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|