pulumi-venafi 1.12.0a1756363836__tar.gz → 1.12.0a1756507011__tar.gz
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-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/PKG-INFO +1 -1
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/config/__init__.pyi +9 -10
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/config/vars.py +9 -10
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/provider.py +35 -38
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/pulumi-plugin.json +1 -1
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi.egg-info/PKG-INFO +1 -1
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pyproject.toml +1 -1
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/README.md +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/__init__.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/_utilities.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/certificate.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/cloud_keystore_installation.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/config/__init__.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/get_cloud_keystore.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/get_cloud_provider.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/policy.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/py.typed +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/ssh_certificate.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/ssh_config.py +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi.egg-info/SOURCES.txt +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi.egg-info/dependency_links.txt +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi.egg-info/requires.txt +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi.egg-info/top_level.txt +0 -0
- {pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/setup.cfg +0 -0
|
@@ -31,8 +31,7 @@ application that will be using the token
|
|
|
31
31
|
|
|
32
32
|
devMode: Optional[bool]
|
|
33
33
|
"""
|
|
34
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
35
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
34
|
+
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
36
35
|
"""
|
|
37
36
|
|
|
38
37
|
externalJwt: Optional[str]
|
|
@@ -42,14 +41,12 @@ JWT of the identity provider associated to the Venafi Control Plane service acco
|
|
|
42
41
|
|
|
43
42
|
p12CertData: Optional[str]
|
|
44
43
|
"""
|
|
45
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
46
|
-
TLSPDC
|
|
44
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
47
45
|
"""
|
|
48
46
|
|
|
49
47
|
p12CertFilename: Optional[str]
|
|
50
48
|
"""
|
|
51
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
52
|
-
TLSPDC
|
|
49
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
53
50
|
"""
|
|
54
51
|
|
|
55
52
|
p12CertPassword: Optional[str]
|
|
@@ -76,8 +73,9 @@ WebSDK user for Venafi TLSPDC. Example: admin
|
|
|
76
73
|
|
|
77
74
|
trustBundle: Optional[str]
|
|
78
75
|
"""
|
|
79
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
80
|
-
|
|
76
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
77
|
+
Example:
|
|
78
|
+
trust_bundle = "${file("chain.pem")}"
|
|
81
79
|
"""
|
|
82
80
|
|
|
83
81
|
url: Optional[str]
|
|
@@ -87,7 +85,8 @@ The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
|
87
85
|
|
|
88
86
|
zone: Optional[str]
|
|
89
87
|
"""
|
|
90
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
91
|
-
Example for Platform: testPolicy\\\\vault
|
|
88
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
89
|
+
Example for Platform: testPolicy\\\\vault
|
|
90
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
92
91
|
"""
|
|
93
92
|
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/config/vars.py
RENAMED
|
@@ -44,8 +44,7 @@ class _ExportableConfig(types.ModuleType):
|
|
|
44
44
|
@_builtins.property
|
|
45
45
|
def dev_mode(self) -> Optional[bool]:
|
|
46
46
|
"""
|
|
47
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
48
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
47
|
+
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
49
48
|
"""
|
|
50
49
|
return __config__.get_bool('devMode')
|
|
51
50
|
|
|
@@ -59,16 +58,14 @@ class _ExportableConfig(types.ModuleType):
|
|
|
59
58
|
@_builtins.property
|
|
60
59
|
def p12_cert_data(self) -> Optional[str]:
|
|
61
60
|
"""
|
|
62
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
63
|
-
TLSPDC
|
|
61
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
64
62
|
"""
|
|
65
63
|
return __config__.get('p12CertData')
|
|
66
64
|
|
|
67
65
|
@_builtins.property
|
|
68
66
|
def p12_cert_filename(self) -> Optional[str]:
|
|
69
67
|
"""
|
|
70
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
71
|
-
TLSPDC
|
|
68
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
72
69
|
"""
|
|
73
70
|
return __config__.get('p12CertFilename')
|
|
74
71
|
|
|
@@ -107,8 +104,9 @@ class _ExportableConfig(types.ModuleType):
|
|
|
107
104
|
@_builtins.property
|
|
108
105
|
def trust_bundle(self) -> Optional[str]:
|
|
109
106
|
"""
|
|
110
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
111
|
-
|
|
107
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
108
|
+
Example:
|
|
109
|
+
trust_bundle = "${file("chain.pem")}"
|
|
112
110
|
"""
|
|
113
111
|
return __config__.get('trustBundle')
|
|
114
112
|
|
|
@@ -122,8 +120,9 @@ class _ExportableConfig(types.ModuleType):
|
|
|
122
120
|
@_builtins.property
|
|
123
121
|
def zone(self) -> Optional[str]:
|
|
124
122
|
"""
|
|
125
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
126
|
-
Example for Platform: testPolicy\\\\vault
|
|
123
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
124
|
+
Example for Platform: testPolicy\\\\vault
|
|
125
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
127
126
|
"""
|
|
128
127
|
return __config__.get('zone')
|
|
129
128
|
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/provider.py
RENAMED
|
@@ -39,22 +39,21 @@ class ProviderArgs:
|
|
|
39
39
|
:param pulumi.Input[_builtins.str] access_token: Access token for Venafi TLSPDC, user should use this for authentication
|
|
40
40
|
:param pulumi.Input[_builtins.str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
|
|
41
41
|
:param pulumi.Input[_builtins.str] client_id: application that will be using the token
|
|
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
|
|
43
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
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 Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
44
43
|
: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
|
-
|
|
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
|
|
48
|
-
TLSPDC
|
|
44
|
+
: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 TLSPDC
|
|
45
|
+
: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 TLSPDC
|
|
49
46
|
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
50
47
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
51
48
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
52
49
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
53
|
-
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
54
|
-
|
|
50
|
+
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
51
|
+
Example:
|
|
52
|
+
trust_bundle = "${file("chain.pem")}"
|
|
55
53
|
:param pulumi.Input[_builtins.str] url: The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
56
|
-
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
57
|
-
Example for Platform: testPolicy\\\\vault
|
|
54
|
+
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
55
|
+
Example for Platform: testPolicy\\\\vault
|
|
56
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
58
57
|
"""
|
|
59
58
|
if access_token is not None:
|
|
60
59
|
pulumi.set(__self__, "access_token", access_token)
|
|
@@ -133,8 +132,7 @@ class ProviderArgs:
|
|
|
133
132
|
@pulumi.getter(name="devMode")
|
|
134
133
|
def dev_mode(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
135
134
|
"""
|
|
136
|
-
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using
|
|
137
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
135
|
+
When set to true, the resulting certificate will be issued by an ephemeral, no trust CA rather than enrolling using Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
138
136
|
"""
|
|
139
137
|
return pulumi.get(self, "dev_mode")
|
|
140
138
|
|
|
@@ -158,8 +156,7 @@ class ProviderArgs:
|
|
|
158
156
|
@pulumi.getter(name="p12CertData")
|
|
159
157
|
def p12_cert_data(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
160
158
|
"""
|
|
161
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
162
|
-
TLSPDC
|
|
159
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
163
160
|
"""
|
|
164
161
|
return pulumi.get(self, "p12_cert_data")
|
|
165
162
|
|
|
@@ -171,8 +168,7 @@ class ProviderArgs:
|
|
|
171
168
|
@pulumi.getter(name="p12CertFilename")
|
|
172
169
|
def p12_cert_filename(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
173
170
|
"""
|
|
174
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
175
|
-
TLSPDC
|
|
171
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
176
172
|
"""
|
|
177
173
|
return pulumi.get(self, "p12_cert_filename")
|
|
178
174
|
|
|
@@ -243,8 +239,9 @@ class ProviderArgs:
|
|
|
243
239
|
@pulumi.getter(name="trustBundle")
|
|
244
240
|
def trust_bundle(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
245
241
|
"""
|
|
246
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
247
|
-
|
|
242
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
243
|
+
Example:
|
|
244
|
+
trust_bundle = "${file("chain.pem")}"
|
|
248
245
|
"""
|
|
249
246
|
return pulumi.get(self, "trust_bundle")
|
|
250
247
|
|
|
@@ -268,8 +265,9 @@ class ProviderArgs:
|
|
|
268
265
|
@pulumi.getter
|
|
269
266
|
def zone(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
270
267
|
"""
|
|
271
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
272
|
-
Example for Platform: testPolicy\\\\vault
|
|
268
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
269
|
+
Example for Platform: testPolicy\\\\vault
|
|
270
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
273
271
|
"""
|
|
274
272
|
return pulumi.get(self, "zone")
|
|
275
273
|
|
|
@@ -311,22 +309,21 @@ class Provider(pulumi.ProviderResource):
|
|
|
311
309
|
:param pulumi.Input[_builtins.str] access_token: Access token for Venafi TLSPDC, user should use this for authentication
|
|
312
310
|
:param pulumi.Input[_builtins.str] api_key: API key for Venafi Control Plane. Example: 142231b7-cvb0-412e-886b-6aeght0bc93d
|
|
313
311
|
:param pulumi.Input[_builtins.str] client_id: application that will be using the token
|
|
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
|
|
315
|
-
Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
312
|
+
: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 Venafi as a Service or Trust Protection Platform. Useful for development and testing
|
|
316
313
|
: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
|
-
|
|
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
|
|
320
|
-
TLSPDC
|
|
314
|
+
: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 TLSPDC
|
|
315
|
+
: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 TLSPDC
|
|
321
316
|
:param pulumi.Input[_builtins.str] p12_cert_password: Password for the PKCS#12 keystore declared in p12_cert / p12_cert_data
|
|
322
317
|
:param pulumi.Input[_builtins.str] token_url: Endpoint URL to request new Venafi Control Plane access tokens
|
|
323
318
|
:param pulumi.Input[_builtins.str] tpp_password: Password for WebSDK user. Example: password
|
|
324
319
|
:param pulumi.Input[_builtins.str] tpp_username: WebSDK user for Venafi TLSPDC. Example: admin
|
|
325
|
-
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
326
|
-
|
|
320
|
+
:param pulumi.Input[_builtins.str] trust_bundle: Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
321
|
+
Example:
|
|
322
|
+
trust_bundle = "${file("chain.pem")}"
|
|
327
323
|
:param pulumi.Input[_builtins.str] url: The Venafi Platform URL. Example: https://tpp.venafi.example/vedsdk
|
|
328
|
-
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
329
|
-
Example for Platform: testPolicy\\\\vault
|
|
324
|
+
:param pulumi.Input[_builtins.str] zone: DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
325
|
+
Example for Platform: testPolicy\\\\vault
|
|
326
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
330
327
|
"""
|
|
331
328
|
...
|
|
332
329
|
@overload
|
|
@@ -438,8 +435,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
438
435
|
@pulumi.getter(name="p12CertData")
|
|
439
436
|
def p12_cert_data(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
440
437
|
"""
|
|
441
|
-
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
442
|
-
TLSPDC
|
|
438
|
+
Base64 encoded PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
443
439
|
"""
|
|
444
440
|
return pulumi.get(self, "p12_cert_data")
|
|
445
441
|
|
|
@@ -447,8 +443,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
447
443
|
@pulumi.getter(name="p12CertFilename")
|
|
448
444
|
def p12_cert_filename(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
449
445
|
"""
|
|
450
|
-
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to
|
|
451
|
-
TLSPDC
|
|
446
|
+
Filename of PKCS#12 keystore containing a client certificate, private key, and chain certificates to authenticate to TLSPDC
|
|
452
447
|
"""
|
|
453
448
|
return pulumi.get(self, "p12_cert_filename")
|
|
454
449
|
|
|
@@ -490,8 +485,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
490
485
|
@pulumi.getter(name="trustBundle")
|
|
491
486
|
def trust_bundle(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
492
487
|
"""
|
|
493
|
-
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the
|
|
494
|
-
|
|
488
|
+
Use to specify a PEM-formatted file that contains certificates to be trust anchors for all communications with the Venafi Web Service.
|
|
489
|
+
Example:
|
|
490
|
+
trust_bundle = "${file("chain.pem")}"
|
|
495
491
|
"""
|
|
496
492
|
return pulumi.get(self, "trust_bundle")
|
|
497
493
|
|
|
@@ -507,8 +503,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
507
503
|
@pulumi.getter
|
|
508
504
|
def zone(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
509
505
|
"""
|
|
510
|
-
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
511
|
-
Example for Platform: testPolicy\\\\vault
|
|
506
|
+
DN of the Venafi TLSPDC policy folder or name of the Venafi as a Service application plus issuing template alias.
|
|
507
|
+
Example for Platform: testPolicy\\\\vault
|
|
508
|
+
Example for Venafi as a Service: myApp\\\\Default
|
|
512
509
|
"""
|
|
513
510
|
return pulumi.get(self, "zone")
|
|
514
511
|
|
|
File without changes
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/__init__.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/_utilities.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/certificate.py
RENAMED
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/config/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/ssh_certificate.py
RENAMED
|
File without changes
|
{pulumi_venafi-1.12.0a1756363836 → pulumi_venafi-1.12.0a1756507011}/pulumi_venafi/ssh_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|