pulumi-venafi 1.11.0a1743575958__py3-none-any.whl → 1.11.0a1744267226__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/__init__.py +1 -0
- pulumi_venafi/certificate.py +364 -363
- pulumi_venafi/cloud_keystore_installation.py +71 -70
- pulumi_venafi/config/__init__.py +1 -0
- pulumi_venafi/config/__init__.pyi +1 -0
- pulumi_venafi/config/vars.py +1 -0
- pulumi_venafi/get_cloud_keystore.py +14 -13
- pulumi_venafi/get_cloud_provider.py +11 -10
- pulumi_venafi/policy.py +29 -28
- pulumi_venafi/provider.py +109 -108
- pulumi_venafi/pulumi-plugin.json +1 -1
- pulumi_venafi/ssh_certificate.py +281 -280
- pulumi_venafi/ssh_config.py +29 -28
- {pulumi_venafi-1.11.0a1743575958.dist-info → pulumi_venafi-1.11.0a1744267226.dist-info}/METADATA +1 -1
- pulumi_venafi-1.11.0a1744267226.dist-info/RECORD +19 -0
- pulumi_venafi-1.11.0a1743575958.dist-info/RECORD +0 -19
- {pulumi_venafi-1.11.0a1743575958.dist-info → pulumi_venafi-1.11.0a1744267226.dist-info}/WHEEL +0 -0
- {pulumi_venafi-1.11.0a1743575958.dist-info → pulumi_venafi-1.11.0a1744267226.dist-info}/top_level.txt +0 -0
pulumi_venafi/ssh_config.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
|
|
5
|
+
import builtins
|
|
5
6
|
import copy
|
|
6
7
|
import warnings
|
|
7
8
|
import sys
|
|
@@ -19,37 +20,37 @@ __all__ = ['SshConfigArgs', 'SshConfig']
|
|
|
19
20
|
@pulumi.input_type
|
|
20
21
|
class SshConfigArgs:
|
|
21
22
|
def __init__(__self__, *,
|
|
22
|
-
template: pulumi.Input[str]):
|
|
23
|
+
template: pulumi.Input[builtins.str]):
|
|
23
24
|
"""
|
|
24
25
|
The set of arguments for constructing a SshConfig resource.
|
|
25
|
-
:param pulumi.Input[str] template: The SSH certificate issuing template.
|
|
26
|
+
:param pulumi.Input[builtins.str] template: The SSH certificate issuing template.
|
|
26
27
|
"""
|
|
27
28
|
pulumi.set(__self__, "template", template)
|
|
28
29
|
|
|
29
30
|
@property
|
|
30
31
|
@pulumi.getter
|
|
31
|
-
def template(self) -> pulumi.Input[str]:
|
|
32
|
+
def template(self) -> pulumi.Input[builtins.str]:
|
|
32
33
|
"""
|
|
33
34
|
The SSH certificate issuing template.
|
|
34
35
|
"""
|
|
35
36
|
return pulumi.get(self, "template")
|
|
36
37
|
|
|
37
38
|
@template.setter
|
|
38
|
-
def template(self, value: pulumi.Input[str]):
|
|
39
|
+
def template(self, value: pulumi.Input[builtins.str]):
|
|
39
40
|
pulumi.set(self, "template", value)
|
|
40
41
|
|
|
41
42
|
|
|
42
43
|
@pulumi.input_type
|
|
43
44
|
class _SshConfigState:
|
|
44
45
|
def __init__(__self__, *,
|
|
45
|
-
ca_public_key: Optional[pulumi.Input[str]] = None,
|
|
46
|
-
principals: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
47
|
-
template: Optional[pulumi.Input[str]] = None):
|
|
46
|
+
ca_public_key: Optional[pulumi.Input[builtins.str]] = None,
|
|
47
|
+
principals: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
48
|
+
template: Optional[pulumi.Input[builtins.str]] = None):
|
|
48
49
|
"""
|
|
49
50
|
Input properties used for looking up and filtering SshConfig resources.
|
|
50
|
-
:param pulumi.Input[str] ca_public_key: (Optional, string) The template's CA public key.
|
|
51
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] principals: (Optional, set of strings) A list of user names exported from the template.
|
|
52
|
-
:param pulumi.Input[str] template: The SSH certificate issuing template.
|
|
51
|
+
:param pulumi.Input[builtins.str] ca_public_key: (Optional, string) The template's CA public key.
|
|
52
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] principals: (Optional, set of strings) A list of user names exported from the template.
|
|
53
|
+
:param pulumi.Input[builtins.str] template: The SSH certificate issuing template.
|
|
53
54
|
"""
|
|
54
55
|
if ca_public_key is not None:
|
|
55
56
|
pulumi.set(__self__, "ca_public_key", ca_public_key)
|
|
@@ -60,38 +61,38 @@ class _SshConfigState:
|
|
|
60
61
|
|
|
61
62
|
@property
|
|
62
63
|
@pulumi.getter(name="caPublicKey")
|
|
63
|
-
def ca_public_key(self) -> Optional[pulumi.Input[str]]:
|
|
64
|
+
def ca_public_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
64
65
|
"""
|
|
65
66
|
(Optional, string) The template's CA public key.
|
|
66
67
|
"""
|
|
67
68
|
return pulumi.get(self, "ca_public_key")
|
|
68
69
|
|
|
69
70
|
@ca_public_key.setter
|
|
70
|
-
def ca_public_key(self, value: Optional[pulumi.Input[str]]):
|
|
71
|
+
def ca_public_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
71
72
|
pulumi.set(self, "ca_public_key", value)
|
|
72
73
|
|
|
73
74
|
@property
|
|
74
75
|
@pulumi.getter
|
|
75
|
-
def principals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
76
|
+
def principals(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
|
76
77
|
"""
|
|
77
78
|
(Optional, set of strings) A list of user names exported from the template.
|
|
78
79
|
"""
|
|
79
80
|
return pulumi.get(self, "principals")
|
|
80
81
|
|
|
81
82
|
@principals.setter
|
|
82
|
-
def principals(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
83
|
+
def principals(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
|
83
84
|
pulumi.set(self, "principals", value)
|
|
84
85
|
|
|
85
86
|
@property
|
|
86
87
|
@pulumi.getter
|
|
87
|
-
def template(self) -> Optional[pulumi.Input[str]]:
|
|
88
|
+
def template(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
88
89
|
"""
|
|
89
90
|
The SSH certificate issuing template.
|
|
90
91
|
"""
|
|
91
92
|
return pulumi.get(self, "template")
|
|
92
93
|
|
|
93
94
|
@template.setter
|
|
94
|
-
def template(self, value: Optional[pulumi.Input[str]]):
|
|
95
|
+
def template(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
95
96
|
pulumi.set(self, "template", value)
|
|
96
97
|
|
|
97
98
|
|
|
@@ -100,7 +101,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
100
101
|
def __init__(__self__,
|
|
101
102
|
resource_name: str,
|
|
102
103
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
103
|
-
template: Optional[pulumi.Input[str]] = None,
|
|
104
|
+
template: Optional[pulumi.Input[builtins.str]] = None,
|
|
104
105
|
__props__=None):
|
|
105
106
|
"""
|
|
106
107
|
Provides access to retrieve configuration from SSH certificate issuance template from *Venafi Trust Protection Platform*.
|
|
@@ -116,7 +117,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
116
117
|
|
|
117
118
|
:param str resource_name: The name of the resource.
|
|
118
119
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
119
|
-
:param pulumi.Input[str] template: The SSH certificate issuing template.
|
|
120
|
+
:param pulumi.Input[builtins.str] template: The SSH certificate issuing template.
|
|
120
121
|
"""
|
|
121
122
|
...
|
|
122
123
|
@overload
|
|
@@ -151,7 +152,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
151
152
|
def _internal_init(__self__,
|
|
152
153
|
resource_name: str,
|
|
153
154
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
154
|
-
template: Optional[pulumi.Input[str]] = None,
|
|
155
|
+
template: Optional[pulumi.Input[builtins.str]] = None,
|
|
155
156
|
__props__=None):
|
|
156
157
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
157
158
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -176,9 +177,9 @@ class SshConfig(pulumi.CustomResource):
|
|
|
176
177
|
def get(resource_name: str,
|
|
177
178
|
id: pulumi.Input[str],
|
|
178
179
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
179
|
-
ca_public_key: Optional[pulumi.Input[str]] = None,
|
|
180
|
-
principals: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
181
|
-
template: Optional[pulumi.Input[str]] = None) -> 'SshConfig':
|
|
180
|
+
ca_public_key: Optional[pulumi.Input[builtins.str]] = None,
|
|
181
|
+
principals: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
|
182
|
+
template: Optional[pulumi.Input[builtins.str]] = None) -> 'SshConfig':
|
|
182
183
|
"""
|
|
183
184
|
Get an existing SshConfig resource's state with the given name, id, and optional extra
|
|
184
185
|
properties used to qualify the lookup.
|
|
@@ -186,9 +187,9 @@ class SshConfig(pulumi.CustomResource):
|
|
|
186
187
|
:param str resource_name: The unique name of the resulting resource.
|
|
187
188
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
188
189
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
189
|
-
:param pulumi.Input[str] ca_public_key: (Optional, string) The template's CA public key.
|
|
190
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] principals: (Optional, set of strings) A list of user names exported from the template.
|
|
191
|
-
:param pulumi.Input[str] template: The SSH certificate issuing template.
|
|
190
|
+
:param pulumi.Input[builtins.str] ca_public_key: (Optional, string) The template's CA public key.
|
|
191
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] principals: (Optional, set of strings) A list of user names exported from the template.
|
|
192
|
+
:param pulumi.Input[builtins.str] template: The SSH certificate issuing template.
|
|
192
193
|
"""
|
|
193
194
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
194
195
|
|
|
@@ -201,7 +202,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
201
202
|
|
|
202
203
|
@property
|
|
203
204
|
@pulumi.getter(name="caPublicKey")
|
|
204
|
-
def ca_public_key(self) -> pulumi.Output[str]:
|
|
205
|
+
def ca_public_key(self) -> pulumi.Output[builtins.str]:
|
|
205
206
|
"""
|
|
206
207
|
(Optional, string) The template's CA public key.
|
|
207
208
|
"""
|
|
@@ -209,7 +210,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
209
210
|
|
|
210
211
|
@property
|
|
211
212
|
@pulumi.getter
|
|
212
|
-
def principals(self) -> pulumi.Output[Sequence[str]]:
|
|
213
|
+
def principals(self) -> pulumi.Output[Sequence[builtins.str]]:
|
|
213
214
|
"""
|
|
214
215
|
(Optional, set of strings) A list of user names exported from the template.
|
|
215
216
|
"""
|
|
@@ -217,7 +218,7 @@ class SshConfig(pulumi.CustomResource):
|
|
|
217
218
|
|
|
218
219
|
@property
|
|
219
220
|
@pulumi.getter
|
|
220
|
-
def template(self) -> pulumi.Output[str]:
|
|
221
|
+
def template(self) -> pulumi.Output[builtins.str]:
|
|
221
222
|
"""
|
|
222
223
|
The SSH certificate issuing template.
|
|
223
224
|
"""
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
pulumi_venafi/__init__.py,sha256=Tfmql4vYPswezMpNCcjuhwmDk4WmTOJl7FiH_9EC1CQ,1745
|
|
2
|
+
pulumi_venafi/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
+
pulumi_venafi/certificate.py,sha256=17_M0xSG0hTCGUNjaewXJ8BcjjGoBuoWtxcG1eawgvQ,65221
|
|
4
|
+
pulumi_venafi/cloud_keystore_installation.py,sha256=N5eubpf_XrjyEynYapdlSWmkl0sOrNNeOyPaWgnskEk,21162
|
|
5
|
+
pulumi_venafi/get_cloud_keystore.py,sha256=6rzKqMolI6_LvbzYaf5M3BMHbiEdt3dfbKB9PzNyIwI,7004
|
|
6
|
+
pulumi_venafi/get_cloud_provider.py,sha256=luvUV0f0mL39kitxvP083S5OlEFwFzKcpc6VrtrRflE,6128
|
|
7
|
+
pulumi_venafi/policy.py,sha256=1oVzAnSYsgKUrse_rVZiGyvBSt47U7BEqygZUcY7DMI,12152
|
|
8
|
+
pulumi_venafi/provider.py,sha256=NUmvL3WH7ejoxPGlTPGjYvvkdV5RfbaE_VyW1M6fSNA,24035
|
|
9
|
+
pulumi_venafi/pulumi-plugin.json,sha256=fb1G1sCAunG4Nf5WtPZ8KZMwQg9ipxc43VzBpmKBE48,83
|
|
10
|
+
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pulumi_venafi/ssh_certificate.py,sha256=vkC-DdgCt7_39L4cV6RJL7w4dSoy-XByhMjW8dTvvxI,56694
|
|
12
|
+
pulumi_venafi/ssh_config.py,sha256=LnL77OfeUVJ72W5tuqBQ5DS6kNbmU5o4tTW_-4j5duw,8948
|
|
13
|
+
pulumi_venafi/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
|
|
14
|
+
pulumi_venafi/config/__init__.pyi,sha256=6MA_XiJGwGYQmh0jTO59s7i64BB_vq0FCVkxVpeGd20,2314
|
|
15
|
+
pulumi_venafi/config/vars.py,sha256=Q0G0EZ209BP93k5Qo25pOPmzyLbejct7-S3g3S1s-94,3823
|
|
16
|
+
pulumi_venafi-1.11.0a1744267226.dist-info/METADATA,sha256=779oJSdxtguuo5V4iCTBNgsmXWOmqTcSOXgX__yBeZE,3674
|
|
17
|
+
pulumi_venafi-1.11.0a1744267226.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
18
|
+
pulumi_venafi-1.11.0a1744267226.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
+
pulumi_venafi-1.11.0a1744267226.dist-info/RECORD,,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
pulumi_venafi/__init__.py,sha256=h34J0B4E1v2um3rbsc0yu3ambi9FGoY4e_Js6aMydbc,1729
|
|
2
|
-
pulumi_venafi/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
|
|
3
|
-
pulumi_venafi/certificate.py,sha256=wh_8L_1Xxiy7iFl_79zuba2qCojOh9rFZGig0ibCpKk,61938
|
|
4
|
-
pulumi_venafi/cloud_keystore_installation.py,sha256=jSV-g393cN0zwUzubC77DQTJIbsOosknQH67PTgARLo,20516
|
|
5
|
-
pulumi_venafi/get_cloud_keystore.py,sha256=mGEcyk4Rd04AujY0cv-bWDTsljS0z-l30R_VlITUFUE,6871
|
|
6
|
-
pulumi_venafi/get_cloud_provider.py,sha256=tO4Xzpg1OfwaePAD3Xm9lzwZC7U4U8fGF4wyn4TTXUM,6022
|
|
7
|
-
pulumi_venafi/policy.py,sha256=EMDu8zmiIeeljAOtJzG_hPg9Qyhscdw11SquUJEb4ug,11884
|
|
8
|
-
pulumi_venafi/provider.py,sha256=8TK_cQI0SxuFz1Za3vtNIc_MkH3FnzxKOJlKqrHMFCA,23047
|
|
9
|
-
pulumi_venafi/pulumi-plugin.json,sha256=Q26zK0WcSl-QKY_yvsFDB-pl0s9ds0ymYpQTeiPCeRY,83
|
|
10
|
-
pulumi_venafi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
pulumi_venafi/ssh_certificate.py,sha256=mVU6fhoxFZ91B3uTl33S_Azatlb6DSfG1lq7oA_BecU,54158
|
|
12
|
-
pulumi_venafi/ssh_config.py,sha256=O2JVh-ifRcavYl11OIND9qgaaF-NCc2u6ZhAP1RIFAU,8680
|
|
13
|
-
pulumi_venafi/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
14
|
-
pulumi_venafi/config/__init__.pyi,sha256=TR27dlJJIXfnn3ONjd8C2SIHUY3Qi2L-GXm_JHtmy44,2298
|
|
15
|
-
pulumi_venafi/config/vars.py,sha256=SoSoX8n1kUOxlPGwrrSTgperPr5jSBB1SIuPGLxB3rY,3807
|
|
16
|
-
pulumi_venafi-1.11.0a1743575958.dist-info/METADATA,sha256=K3VS6xay0pKSR2tAivZjOEe9LWBeRrZ6FxUWY9f_RzQ,3674
|
|
17
|
-
pulumi_venafi-1.11.0a1743575958.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
18
|
-
pulumi_venafi-1.11.0a1743575958.dist-info/top_level.txt,sha256=Ail5lbFaPXJp8zJFZ3jJASt8lnXFrCD0SBlJWooalBM,14
|
|
19
|
-
pulumi_venafi-1.11.0a1743575958.dist-info/RECORD,,
|
{pulumi_venafi-1.11.0a1743575958.dist-info → pulumi_venafi-1.11.0a1744267226.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|