pulumi-venafi 1.12.0a1754981474__tar.gz → 1.12.0a1755240767__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.

Files changed (24) hide show
  1. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/PKG-INFO +1 -1
  2. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/config/__init__.pyi +7 -1
  3. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/config/vars.py +9 -1
  4. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/provider.py +36 -4
  5. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/pulumi-plugin.json +1 -1
  6. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi.egg-info/PKG-INFO +1 -1
  7. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pyproject.toml +1 -1
  8. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/README.md +0 -0
  9. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/__init__.py +0 -0
  10. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/_utilities.py +0 -0
  11. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/certificate.py +0 -0
  12. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/cloud_keystore_installation.py +0 -0
  13. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/config/__init__.py +0 -0
  14. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/get_cloud_keystore.py +0 -0
  15. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/get_cloud_provider.py +0 -0
  16. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/policy.py +0 -0
  17. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/py.typed +0 -0
  18. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/ssh_certificate.py +0 -0
  19. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi/ssh_config.py +0 -0
  20. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi.egg-info/SOURCES.txt +0 -0
  21. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi.egg-info/dependency_links.txt +0 -0
  22. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi.egg-info/requires.txt +0 -0
  23. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/pulumi_venafi.egg-info/top_level.txt +0 -0
  24. {pulumi_venafi-1.12.0a1754981474 → pulumi_venafi-1.12.0a1755240767}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_venafi
3
- Version: 1.12.0a1754981474
3
+ Version: 1.12.0a1755240767
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
@@ -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]
@@ -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
 
@@ -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
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "venafi",
4
- "version": "1.12.0-alpha.1754981474"
4
+ "version": "1.12.0-alpha.1755240767"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_venafi
3
- Version: 1.12.0a1754981474
3
+ Version: 1.12.0a1755240767
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,7 +5,7 @@
5
5
  keywords = ["pulumi", "venafi"]
6
6
  readme = "README.md"
7
7
  requires-python = ">=3.9"
8
- version = "1.12.0a1754981474"
8
+ version = "1.12.0a1755240767"
9
9
  [project.license]
10
10
  text = "Apache-2.0"
11
11
  [project.urls]