pulumi-venafi 1.12.0a1756363836__py3-none-any.whl → 1.12.0a1757055063__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.

@@ -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
- Venafi Web Service. Example: trust_bundle = "${file("chain.pem")}"
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 Example for Venafi as a Service: myApp\\\\Default
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
 
@@ -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
- Venafi Web Service. Example: trust_bundle = "${file("chain.pem")}"
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 Example for Venafi as a Service: myApp\\\\Default
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/provider.py CHANGED
@@ -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
- TLSPDC
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
- Venafi Web Service. Example: trust_bundle = "${file("chain.pem")}"
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 Example for Venafi as a Service: myApp\\\\Default
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
- Venafi Web Service. Example: trust_bundle = "${file("chain.pem")}"
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 Example for Venafi as a Service: myApp\\\\Default
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
- TLSPDC
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
- Venafi Web Service. Example: trust_bundle = "${file("chain.pem")}"
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 Example for Venafi as a Service: myApp\\\\Default
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
- Venafi Web Service. Example: trust_bundle = "${file("chain.pem")}"
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 Example for Venafi as a Service: myApp\\\\Default
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
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "venafi",
4
- "version": "1.12.0-alpha.1756363836"
4
+ "version": "1.12.0-alpha.1757055063"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_venafi
3
- Version: 1.12.0a1756363836
3
+ Version: 1.12.0a1757055063
4
4
  Summary: A Pulumi package for creating and managing venafi cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -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=hGhvcob4_0_UCywr0TXPQh95GMviQSwIU7_eTeaAI14,27028
9
- pulumi_venafi/pulumi-plugin.json,sha256=o1mj8R2C2zw45N-oEnzYTY0B-anVYawdmdIrBmTLRXs,83
8
+ pulumi_venafi/provider.py,sha256=0XhgStEYCWOoQQrEMf_QYXvZQIqWtWHarzHi0DVfC-k,27002
9
+ pulumi_venafi/pulumi-plugin.json,sha256=WT8E84GV8rX4SLXcvDmK7k3Opf0Eh6eOZv3u805S5Ec,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=NGFie-w3tGvNxEpUJ-T5ggUm_yhfZZX6UBjgaxFx40s,2476
15
- pulumi_venafi/config/vars.py,sha256=cvdTKZzgdLcEKYcx1sLc7kpwnZF2xLb6eROrU5ZYPTg,4245
16
- pulumi_venafi-1.12.0a1756363836.dist-info/METADATA,sha256=TzD3IrxKoxA7lxa0dS-QZZbrdLLpg1FprkP62m0D9r0,3677
17
- pulumi_venafi-1.12.0a1756363836.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
18
- pulumi_venafi-1.12.0a1756363836.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
19
- pulumi_venafi-1.12.0a1756363836.dist-info/RECORD,,
14
+ pulumi_venafi/config/__init__.pyi,sha256=jjqvk6HEkPy8UkpuRS5tBLF8iViAt_e72BxI5DkG0Oc,2479
15
+ pulumi_venafi/config/vars.py,sha256=cF6fz2siiJ3Sy075nHB0MlluRym28088s2baHsCnqyo,4240
16
+ pulumi_venafi-1.12.0a1757055063.dist-info/METADATA,sha256=SD9M-2VrEqlV86KGkQlPNlVJ_xU3_kOCsqwDRLXj1kE,3677
17
+ pulumi_venafi-1.12.0a1757055063.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
18
+ pulumi_venafi-1.12.0a1757055063.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
19
+ pulumi_venafi-1.12.0a1757055063.dist-info/RECORD,,