@pierskarsenbarg/sdm 1.26.0 → 1.28.0
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.
- package/account.d.ts +2 -0
- package/account.js +2 -0
- package/account.js.map +1 -1
- package/approvalWorkflow.d.ts +46 -1
- package/approvalWorkflow.js +34 -1
- package/approvalWorkflow.js.map +1 -1
- package/getAccount.d.ts +12 -0
- package/getAccount.js +2 -0
- package/getAccount.js.map +1 -1
- package/getApprovalWorkflow.d.ts +13 -0
- package/getApprovalWorkflow.js +2 -0
- package/getApprovalWorkflow.js.map +1 -1
- package/getManagedSecret.d.ts +115 -0
- package/getManagedSecret.js +38 -0
- package/getManagedSecret.js.map +1 -0
- package/getResource.d.ts +1 -1
- package/getSecretEngine.d.ts +254 -0
- package/getSecretEngine.js +64 -0
- package/getSecretEngine.js.map +1 -0
- package/getWorkflow.d.ts +6 -0
- package/getWorkflow.js.map +1 -1
- package/getWorkflowApprover.d.ts +2 -30
- package/getWorkflowApprover.js +2 -30
- package/getWorkflowApprover.js.map +1 -1
- package/index.d.ts +13 -15
- package/index.js +35 -21
- package/index.js.map +1 -1
- package/managedSecret.d.ts +134 -0
- package/managedSecret.js +80 -0
- package/managedSecret.js.map +1 -0
- package/package.json +1 -1
- package/provider.d.ts +14 -0
- package/provider.js +8 -0
- package/provider.js.map +1 -1
- package/resource.d.ts +45 -27
- package/resource.js +10 -0
- package/resource.js.map +1 -1
- package/secretEngine.d.ts +74 -0
- package/secretEngine.js +63 -0
- package/secretEngine.js.map +1 -0
- package/types/input.d.ts +481 -0
- package/types/output.d.ts +954 -26
- package/workflow.d.ts +6 -0
- package/workflow.js.map +1 -1
- package/workflowApprover.d.ts +1 -15
- package/workflowApprover.js +1 -15
- package/workflowApprover.js.map +1 -1
- package/approvalWorkflowApprover.d.ts +0 -113
- package/approvalWorkflowApprover.js +0 -90
- package/approvalWorkflowApprover.js.map +0 -1
- package/approvalWorkflowStep.d.ts +0 -68
- package/approvalWorkflowStep.js +0 -72
- package/approvalWorkflowStep.js.map +0 -1
- package/getApprovalWorkflowApprover.d.ts +0 -127
- package/getApprovalWorkflowApprover.js +0 -72
- package/getApprovalWorkflowApprover.js.map +0 -1
- package/getApprovalWorkflowStep.d.ts +0 -77
- package/getApprovalWorkflowStep.js +0 -52
- package/getApprovalWorkflowStep.js.map +0 -1
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* A SecretEngine is managing secrets in SecretStores.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getSecretEngine(args?: GetSecretEngineArgs, opts?: pulumi.InvokeOptions): Promise<GetSecretEngineResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getSecretEngine.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetSecretEngineArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Distinguished name of object to bind when performing user and group search. Example: cn=vault,ou=Users,dc=example,dc=com
|
|
13
|
+
*/
|
|
14
|
+
binddn?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Password to use along with binddn when performing user search.
|
|
17
|
+
*/
|
|
18
|
+
bindpass?: string;
|
|
19
|
+
/**
|
|
20
|
+
* CA certificate to use when verifying LDAP server certificate, must be x509 PEM encoded.
|
|
21
|
+
*/
|
|
22
|
+
certificate?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Timeout, in seconds, when attempting to connect to the LDAP server before trying the next URL in the configuration.
|
|
25
|
+
*/
|
|
26
|
+
connectionTimeout?: number;
|
|
27
|
+
/**
|
|
28
|
+
* If set to true this will prevent password change timestamp validation in Active Directory when validating credentials
|
|
29
|
+
*/
|
|
30
|
+
doNotValidateTimestamps?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier of the Secret Engine.
|
|
33
|
+
*/
|
|
34
|
+
id?: string;
|
|
35
|
+
/**
|
|
36
|
+
* If true, skips LDAP server SSL certificate verification - insecure, use with caution!
|
|
37
|
+
*/
|
|
38
|
+
insecureTls?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* An interval of public/private key rotation for secret engine in days
|
|
41
|
+
*/
|
|
42
|
+
keyRotationIntervalDays?: number;
|
|
43
|
+
/**
|
|
44
|
+
* Unique human-readable name of the Secret Engine.
|
|
45
|
+
*/
|
|
46
|
+
name?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Timeout, in seconds, for the connection when making requests against the server before returning back an error.
|
|
49
|
+
*/
|
|
50
|
+
requestTimeout?: number;
|
|
51
|
+
/**
|
|
52
|
+
* Backing secret store identifier
|
|
53
|
+
*/
|
|
54
|
+
secretStoreId?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Backing Secret Store root path where managed secrets are going to be stored
|
|
57
|
+
*/
|
|
58
|
+
secretStoreRootPath?: string;
|
|
59
|
+
/**
|
|
60
|
+
* If true, issues a StartTLS command after establishing an unencrypted connection.
|
|
61
|
+
*/
|
|
62
|
+
startTls?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Tags is a map of key, value pairs.
|
|
65
|
+
*/
|
|
66
|
+
tags?: {
|
|
67
|
+
[key: string]: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters) for more information.
|
|
71
|
+
*/
|
|
72
|
+
type?: string;
|
|
73
|
+
/**
|
|
74
|
+
* The domain (userPrincipalDomain) used to construct a UPN string for authentication.
|
|
75
|
+
*/
|
|
76
|
+
upndomain?: string;
|
|
77
|
+
/**
|
|
78
|
+
* The LDAP server to connect to.
|
|
79
|
+
*/
|
|
80
|
+
url?: string;
|
|
81
|
+
/**
|
|
82
|
+
* Base DN under which to perform user search. Example: ou=Users,dc=example,dc=com
|
|
83
|
+
*/
|
|
84
|
+
userdn?: string;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* A collection of values returned by getSecretEngine.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetSecretEngineResult {
|
|
90
|
+
/**
|
|
91
|
+
* Distinguished name of object to bind when performing user and group search. Example: cn=vault,ou=Users,dc=example,dc=com
|
|
92
|
+
*/
|
|
93
|
+
readonly binddn?: string;
|
|
94
|
+
/**
|
|
95
|
+
* Password to use along with binddn when performing user search.
|
|
96
|
+
*/
|
|
97
|
+
readonly bindpass?: string;
|
|
98
|
+
/**
|
|
99
|
+
* CA certificate to use when verifying LDAP server certificate, must be x509 PEM encoded.
|
|
100
|
+
*/
|
|
101
|
+
readonly certificate?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Timeout, in seconds, when attempting to connect to the LDAP server before trying the next URL in the configuration.
|
|
104
|
+
*/
|
|
105
|
+
readonly connectionTimeout?: number;
|
|
106
|
+
/**
|
|
107
|
+
* If set to true this will prevent password change timestamp validation in Active Directory when validating credentials
|
|
108
|
+
*/
|
|
109
|
+
readonly doNotValidateTimestamps?: boolean;
|
|
110
|
+
/**
|
|
111
|
+
* Unique identifier of the Secret Engine.
|
|
112
|
+
*/
|
|
113
|
+
readonly id?: string;
|
|
114
|
+
/**
|
|
115
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
116
|
+
*/
|
|
117
|
+
readonly ids: string[];
|
|
118
|
+
/**
|
|
119
|
+
* If true, skips LDAP server SSL certificate verification - insecure, use with caution!
|
|
120
|
+
*/
|
|
121
|
+
readonly insecureTls?: boolean;
|
|
122
|
+
/**
|
|
123
|
+
* An interval of public/private key rotation for secret engine in days
|
|
124
|
+
*/
|
|
125
|
+
readonly keyRotationIntervalDays?: number;
|
|
126
|
+
/**
|
|
127
|
+
* Unique human-readable name of the Secret Engine.
|
|
128
|
+
*/
|
|
129
|
+
readonly name?: string;
|
|
130
|
+
/**
|
|
131
|
+
* Timeout, in seconds, for the connection when making requests against the server before returning back an error.
|
|
132
|
+
*/
|
|
133
|
+
readonly requestTimeout?: number;
|
|
134
|
+
/**
|
|
135
|
+
* A single element list containing a map, where each key lists one of the following objects:
|
|
136
|
+
* * active_directory:
|
|
137
|
+
*/
|
|
138
|
+
readonly secretEngines: outputs.GetSecretEngineSecretEngine[];
|
|
139
|
+
/**
|
|
140
|
+
* Backing secret store identifier
|
|
141
|
+
*/
|
|
142
|
+
readonly secretStoreId?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Backing Secret Store root path where managed secrets are going to be stored
|
|
145
|
+
*/
|
|
146
|
+
readonly secretStoreRootPath?: string;
|
|
147
|
+
/**
|
|
148
|
+
* If true, issues a StartTLS command after establishing an unencrypted connection.
|
|
149
|
+
*/
|
|
150
|
+
readonly startTls?: boolean;
|
|
151
|
+
/**
|
|
152
|
+
* Tags is a map of key, value pairs.
|
|
153
|
+
*/
|
|
154
|
+
readonly tags?: {
|
|
155
|
+
[key: string]: string;
|
|
156
|
+
};
|
|
157
|
+
readonly type?: string;
|
|
158
|
+
/**
|
|
159
|
+
* The domain (userPrincipalDomain) used to construct a UPN string for authentication.
|
|
160
|
+
*/
|
|
161
|
+
readonly upndomain?: string;
|
|
162
|
+
/**
|
|
163
|
+
* The LDAP server to connect to.
|
|
164
|
+
*/
|
|
165
|
+
readonly url?: string;
|
|
166
|
+
/**
|
|
167
|
+
* Base DN under which to perform user search. Example: ou=Users,dc=example,dc=com
|
|
168
|
+
* * key_value:
|
|
169
|
+
*/
|
|
170
|
+
readonly userdn?: string;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* A SecretEngine is managing secrets in SecretStores.
|
|
174
|
+
*/
|
|
175
|
+
export declare function getSecretEngineOutput(args?: GetSecretEngineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSecretEngineResult>;
|
|
176
|
+
/**
|
|
177
|
+
* A collection of arguments for invoking getSecretEngine.
|
|
178
|
+
*/
|
|
179
|
+
export interface GetSecretEngineOutputArgs {
|
|
180
|
+
/**
|
|
181
|
+
* Distinguished name of object to bind when performing user and group search. Example: cn=vault,ou=Users,dc=example,dc=com
|
|
182
|
+
*/
|
|
183
|
+
binddn?: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* Password to use along with binddn when performing user search.
|
|
186
|
+
*/
|
|
187
|
+
bindpass?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* CA certificate to use when verifying LDAP server certificate, must be x509 PEM encoded.
|
|
190
|
+
*/
|
|
191
|
+
certificate?: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* Timeout, in seconds, when attempting to connect to the LDAP server before trying the next URL in the configuration.
|
|
194
|
+
*/
|
|
195
|
+
connectionTimeout?: pulumi.Input<number>;
|
|
196
|
+
/**
|
|
197
|
+
* If set to true this will prevent password change timestamp validation in Active Directory when validating credentials
|
|
198
|
+
*/
|
|
199
|
+
doNotValidateTimestamps?: pulumi.Input<boolean>;
|
|
200
|
+
/**
|
|
201
|
+
* Unique identifier of the Secret Engine.
|
|
202
|
+
*/
|
|
203
|
+
id?: pulumi.Input<string>;
|
|
204
|
+
/**
|
|
205
|
+
* If true, skips LDAP server SSL certificate verification - insecure, use with caution!
|
|
206
|
+
*/
|
|
207
|
+
insecureTls?: pulumi.Input<boolean>;
|
|
208
|
+
/**
|
|
209
|
+
* An interval of public/private key rotation for secret engine in days
|
|
210
|
+
*/
|
|
211
|
+
keyRotationIntervalDays?: pulumi.Input<number>;
|
|
212
|
+
/**
|
|
213
|
+
* Unique human-readable name of the Secret Engine.
|
|
214
|
+
*/
|
|
215
|
+
name?: pulumi.Input<string>;
|
|
216
|
+
/**
|
|
217
|
+
* Timeout, in seconds, for the connection when making requests against the server before returning back an error.
|
|
218
|
+
*/
|
|
219
|
+
requestTimeout?: pulumi.Input<number>;
|
|
220
|
+
/**
|
|
221
|
+
* Backing secret store identifier
|
|
222
|
+
*/
|
|
223
|
+
secretStoreId?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* Backing Secret Store root path where managed secrets are going to be stored
|
|
226
|
+
*/
|
|
227
|
+
secretStoreRootPath?: pulumi.Input<string>;
|
|
228
|
+
/**
|
|
229
|
+
* If true, issues a StartTLS command after establishing an unencrypted connection.
|
|
230
|
+
*/
|
|
231
|
+
startTls?: pulumi.Input<boolean>;
|
|
232
|
+
/**
|
|
233
|
+
* Tags is a map of key, value pairs.
|
|
234
|
+
*/
|
|
235
|
+
tags?: pulumi.Input<{
|
|
236
|
+
[key: string]: pulumi.Input<string>;
|
|
237
|
+
}>;
|
|
238
|
+
/**
|
|
239
|
+
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters) for more information.
|
|
240
|
+
*/
|
|
241
|
+
type?: pulumi.Input<string>;
|
|
242
|
+
/**
|
|
243
|
+
* The domain (userPrincipalDomain) used to construct a UPN string for authentication.
|
|
244
|
+
*/
|
|
245
|
+
upndomain?: pulumi.Input<string>;
|
|
246
|
+
/**
|
|
247
|
+
* The LDAP server to connect to.
|
|
248
|
+
*/
|
|
249
|
+
url?: pulumi.Input<string>;
|
|
250
|
+
/**
|
|
251
|
+
* Base DN under which to perform user search. Example: ou=Users,dc=example,dc=com
|
|
252
|
+
*/
|
|
253
|
+
userdn?: pulumi.Input<string>;
|
|
254
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getSecretEngineOutput = exports.getSecretEngine = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* A SecretEngine is managing secrets in SecretStores.
|
|
10
|
+
*/
|
|
11
|
+
function getSecretEngine(args, opts) {
|
|
12
|
+
args = args || {};
|
|
13
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
+
return pulumi.runtime.invoke("sdm:index/getSecretEngine:getSecretEngine", {
|
|
15
|
+
"binddn": args.binddn,
|
|
16
|
+
"bindpass": args.bindpass,
|
|
17
|
+
"certificate": args.certificate,
|
|
18
|
+
"connectionTimeout": args.connectionTimeout,
|
|
19
|
+
"doNotValidateTimestamps": args.doNotValidateTimestamps,
|
|
20
|
+
"id": args.id,
|
|
21
|
+
"insecureTls": args.insecureTls,
|
|
22
|
+
"keyRotationIntervalDays": args.keyRotationIntervalDays,
|
|
23
|
+
"name": args.name,
|
|
24
|
+
"requestTimeout": args.requestTimeout,
|
|
25
|
+
"secretStoreId": args.secretStoreId,
|
|
26
|
+
"secretStoreRootPath": args.secretStoreRootPath,
|
|
27
|
+
"startTls": args.startTls,
|
|
28
|
+
"tags": args.tags,
|
|
29
|
+
"type": args.type,
|
|
30
|
+
"upndomain": args.upndomain,
|
|
31
|
+
"url": args.url,
|
|
32
|
+
"userdn": args.userdn,
|
|
33
|
+
}, opts);
|
|
34
|
+
}
|
|
35
|
+
exports.getSecretEngine = getSecretEngine;
|
|
36
|
+
/**
|
|
37
|
+
* A SecretEngine is managing secrets in SecretStores.
|
|
38
|
+
*/
|
|
39
|
+
function getSecretEngineOutput(args, opts) {
|
|
40
|
+
args = args || {};
|
|
41
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
42
|
+
return pulumi.runtime.invokeOutput("sdm:index/getSecretEngine:getSecretEngine", {
|
|
43
|
+
"binddn": args.binddn,
|
|
44
|
+
"bindpass": args.bindpass,
|
|
45
|
+
"certificate": args.certificate,
|
|
46
|
+
"connectionTimeout": args.connectionTimeout,
|
|
47
|
+
"doNotValidateTimestamps": args.doNotValidateTimestamps,
|
|
48
|
+
"id": args.id,
|
|
49
|
+
"insecureTls": args.insecureTls,
|
|
50
|
+
"keyRotationIntervalDays": args.keyRotationIntervalDays,
|
|
51
|
+
"name": args.name,
|
|
52
|
+
"requestTimeout": args.requestTimeout,
|
|
53
|
+
"secretStoreId": args.secretStoreId,
|
|
54
|
+
"secretStoreRootPath": args.secretStoreRootPath,
|
|
55
|
+
"startTls": args.startTls,
|
|
56
|
+
"tags": args.tags,
|
|
57
|
+
"type": args.type,
|
|
58
|
+
"upndomain": args.upndomain,
|
|
59
|
+
"url": args.url,
|
|
60
|
+
"userdn": args.userdn,
|
|
61
|
+
}, opts);
|
|
62
|
+
}
|
|
63
|
+
exports.getSecretEngineOutput = getSecretEngineOutput;
|
|
64
|
+
//# sourceMappingURL=getSecretEngine.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSecretEngine.js","sourceRoot":"","sources":["../getSecretEngine.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAvBD,0CAuBC;AAoKD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAAiC;IACrG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAvBD,sDAuBC"}
|
package/getWorkflow.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export interface GetWorkflowArgs {
|
|
|
24
24
|
approvalFlowId?: string;
|
|
25
25
|
/**
|
|
26
26
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
27
|
+
*
|
|
28
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
27
29
|
*/
|
|
28
30
|
autoGrant?: boolean;
|
|
29
31
|
/**
|
|
@@ -65,6 +67,8 @@ export interface GetWorkflowResult {
|
|
|
65
67
|
readonly approvalFlowId?: string;
|
|
66
68
|
/**
|
|
67
69
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
70
|
+
*
|
|
71
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
68
72
|
*/
|
|
69
73
|
readonly autoGrant?: boolean;
|
|
70
74
|
/**
|
|
@@ -120,6 +124,8 @@ export interface GetWorkflowOutputArgs {
|
|
|
120
124
|
approvalFlowId?: pulumi.Input<string>;
|
|
121
125
|
/**
|
|
122
126
|
* Optional auto grant setting to automatically approve requests or not, defaults to false.
|
|
127
|
+
*
|
|
128
|
+
* @deprecated auto_grant is deprecated, see docs for more info
|
|
123
129
|
*/
|
|
124
130
|
autoGrant?: pulumi.Input<boolean>;
|
|
125
131
|
/**
|
package/getWorkflow.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkflow.js","sourceRoot":"","sources":["../getWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,kCAcC;
|
|
1
|
+
{"version":3,"file":"getWorkflow.js","sourceRoot":"","sources":["../getWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,kCAcC;AAiGD;;;;GAIG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAAiC;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mCAAmC,EAAE;QACpE,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,8CAcC"}
|
package/getWorkflowApprover.d.ts
CHANGED
|
@@ -2,21 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
4
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* ```typescript
|
|
8
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
-
* import * as sdm from "@pulumi/sdm";
|
|
10
|
-
*
|
|
11
|
-
* const workflowApproverAccountQuery = sdm.getWorkflowApprover({
|
|
12
|
-
* accountId: "a-2496542",
|
|
13
|
-
* workflowId: "aw-541894",
|
|
14
|
-
* });
|
|
15
|
-
* const workflowApproverRoleQuery = sdm.getWorkflowApprover({
|
|
16
|
-
* roleId: "r-417345",
|
|
17
|
-
* workflowId: "aw-679923",
|
|
18
|
-
* });
|
|
19
|
-
* ```
|
|
5
|
+
* This data source is deprecated.
|
|
20
6
|
*/
|
|
21
7
|
export declare function getWorkflowApprover(args?: GetWorkflowApproverArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowApproverResult>;
|
|
22
8
|
/**
|
|
@@ -71,21 +57,7 @@ export interface GetWorkflowApproverResult {
|
|
|
71
57
|
}
|
|
72
58
|
/**
|
|
73
59
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
74
|
-
*
|
|
75
|
-
*
|
|
76
|
-
* ```typescript
|
|
77
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
78
|
-
* import * as sdm from "@pulumi/sdm";
|
|
79
|
-
*
|
|
80
|
-
* const workflowApproverAccountQuery = sdm.getWorkflowApprover({
|
|
81
|
-
* accountId: "a-2496542",
|
|
82
|
-
* workflowId: "aw-541894",
|
|
83
|
-
* });
|
|
84
|
-
* const workflowApproverRoleQuery = sdm.getWorkflowApprover({
|
|
85
|
-
* roleId: "r-417345",
|
|
86
|
-
* workflowId: "aw-679923",
|
|
87
|
-
* });
|
|
88
|
-
* ```
|
|
60
|
+
* This data source is deprecated.
|
|
89
61
|
*/
|
|
90
62
|
export declare function getWorkflowApproverOutput(args?: GetWorkflowApproverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkflowApproverResult>;
|
|
91
63
|
/**
|
package/getWorkflowApprover.js
CHANGED
|
@@ -7,21 +7,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
9
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
* ```typescript
|
|
13
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
-
* import * as sdm from "@pulumi/sdm";
|
|
15
|
-
*
|
|
16
|
-
* const workflowApproverAccountQuery = sdm.getWorkflowApprover({
|
|
17
|
-
* accountId: "a-2496542",
|
|
18
|
-
* workflowId: "aw-541894",
|
|
19
|
-
* });
|
|
20
|
-
* const workflowApproverRoleQuery = sdm.getWorkflowApprover({
|
|
21
|
-
* roleId: "r-417345",
|
|
22
|
-
* workflowId: "aw-679923",
|
|
23
|
-
* });
|
|
24
|
-
* ```
|
|
10
|
+
* This data source is deprecated.
|
|
25
11
|
*/
|
|
26
12
|
function getWorkflowApprover(args, opts) {
|
|
27
13
|
args = args || {};
|
|
@@ -36,21 +22,7 @@ function getWorkflowApprover(args, opts) {
|
|
|
36
22
|
exports.getWorkflowApprover = getWorkflowApprover;
|
|
37
23
|
/**
|
|
38
24
|
* WorkflowApprover is an account or a role with the ability to approve requests bound to a workflow.
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
* ```typescript
|
|
42
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
43
|
-
* import * as sdm from "@pulumi/sdm";
|
|
44
|
-
*
|
|
45
|
-
* const workflowApproverAccountQuery = sdm.getWorkflowApprover({
|
|
46
|
-
* accountId: "a-2496542",
|
|
47
|
-
* workflowId: "aw-541894",
|
|
48
|
-
* });
|
|
49
|
-
* const workflowApproverRoleQuery = sdm.getWorkflowApprover({
|
|
50
|
-
* roleId: "r-417345",
|
|
51
|
-
* workflowId: "aw-679923",
|
|
52
|
-
* });
|
|
53
|
-
* ```
|
|
25
|
+
* This data source is deprecated.
|
|
54
26
|
*/
|
|
55
27
|
function getWorkflowApproverOutput(args, opts) {
|
|
56
28
|
args = args || {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkflowApprover.js","sourceRoot":"","sources":["../getWorkflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getWorkflowApprover.js","sourceRoot":"","sources":["../getWorkflowApprover.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;GAGG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;AAqDD;;;GAGG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAAiC;IAC7G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mDAAmD,EAAE;QACpF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,8DASC"}
|
package/index.d.ts
CHANGED
|
@@ -7,12 +7,6 @@ export declare const AccountAttachment: typeof import("./accountAttachment").Acc
|
|
|
7
7
|
export { ApprovalWorkflowArgs, ApprovalWorkflowState } from "./approvalWorkflow";
|
|
8
8
|
export type ApprovalWorkflow = import("./approvalWorkflow").ApprovalWorkflow;
|
|
9
9
|
export declare const ApprovalWorkflow: typeof import("./approvalWorkflow").ApprovalWorkflow;
|
|
10
|
-
export { ApprovalWorkflowApproverArgs, ApprovalWorkflowApproverState } from "./approvalWorkflowApprover";
|
|
11
|
-
export type ApprovalWorkflowApprover = import("./approvalWorkflowApprover").ApprovalWorkflowApprover;
|
|
12
|
-
export declare const ApprovalWorkflowApprover: typeof import("./approvalWorkflowApprover").ApprovalWorkflowApprover;
|
|
13
|
-
export { ApprovalWorkflowStepArgs, ApprovalWorkflowStepState } from "./approvalWorkflowStep";
|
|
14
|
-
export type ApprovalWorkflowStep = import("./approvalWorkflowStep").ApprovalWorkflowStep;
|
|
15
|
-
export declare const ApprovalWorkflowStep: typeof import("./approvalWorkflowStep").ApprovalWorkflowStep;
|
|
16
10
|
export { GetAccountArgs, GetAccountResult, GetAccountOutputArgs } from "./getAccount";
|
|
17
11
|
export declare const getAccount: typeof import("./getAccount").getAccount;
|
|
18
12
|
export declare const getAccountOutput: typeof import("./getAccount").getAccountOutput;
|
|
@@ -22,18 +16,15 @@ export declare const getAccountAttachmentOutput: typeof import("./getAccountAtta
|
|
|
22
16
|
export { GetApprovalWorkflowArgs, GetApprovalWorkflowResult, GetApprovalWorkflowOutputArgs } from "./getApprovalWorkflow";
|
|
23
17
|
export declare const getApprovalWorkflow: typeof import("./getApprovalWorkflow").getApprovalWorkflow;
|
|
24
18
|
export declare const getApprovalWorkflowOutput: typeof import("./getApprovalWorkflow").getApprovalWorkflowOutput;
|
|
25
|
-
export { GetApprovalWorkflowApproverArgs, GetApprovalWorkflowApproverResult, GetApprovalWorkflowApproverOutputArgs } from "./getApprovalWorkflowApprover";
|
|
26
|
-
export declare const getApprovalWorkflowApprover: typeof import("./getApprovalWorkflowApprover").getApprovalWorkflowApprover;
|
|
27
|
-
export declare const getApprovalWorkflowApproverOutput: typeof import("./getApprovalWorkflowApprover").getApprovalWorkflowApproverOutput;
|
|
28
|
-
export { GetApprovalWorkflowStepArgs, GetApprovalWorkflowStepResult, GetApprovalWorkflowStepOutputArgs } from "./getApprovalWorkflowStep";
|
|
29
|
-
export declare const getApprovalWorkflowStep: typeof import("./getApprovalWorkflowStep").getApprovalWorkflowStep;
|
|
30
|
-
export declare const getApprovalWorkflowStepOutput: typeof import("./getApprovalWorkflowStep").getApprovalWorkflowStepOutput;
|
|
31
19
|
export { GetIdentityAliasArgs, GetIdentityAliasResult, GetIdentityAliasOutputArgs } from "./getIdentityAlias";
|
|
32
20
|
export declare const getIdentityAlias: typeof import("./getIdentityAlias").getIdentityAlias;
|
|
33
21
|
export declare const getIdentityAliasOutput: typeof import("./getIdentityAlias").getIdentityAliasOutput;
|
|
34
22
|
export { GetIdentitySetArgs, GetIdentitySetResult, GetIdentitySetOutputArgs } from "./getIdentitySet";
|
|
35
23
|
export declare const getIdentitySet: typeof import("./getIdentitySet").getIdentitySet;
|
|
36
24
|
export declare const getIdentitySetOutput: typeof import("./getIdentitySet").getIdentitySetOutput;
|
|
25
|
+
export { GetManagedSecretArgs, GetManagedSecretResult, GetManagedSecretOutputArgs } from "./getManagedSecret";
|
|
26
|
+
export declare const getManagedSecret: typeof import("./getManagedSecret").getManagedSecret;
|
|
27
|
+
export declare const getManagedSecretOutput: typeof import("./getManagedSecret").getManagedSecretOutput;
|
|
37
28
|
export { GetNodeArgs, GetNodeResult, GetNodeOutputArgs } from "./getNode";
|
|
38
29
|
export declare const getNode: typeof import("./getNode").getNode;
|
|
39
30
|
export declare const getNodeOutput: typeof import("./getNode").getNodeOutput;
|
|
@@ -67,6 +58,9 @@ export declare const getResourceOutput: typeof import("./getResource").getResour
|
|
|
67
58
|
export { GetRoleArgs, GetRoleResult, GetRoleOutputArgs } from "./getRole";
|
|
68
59
|
export declare const getRole: typeof import("./getRole").getRole;
|
|
69
60
|
export declare const getRoleOutput: typeof import("./getRole").getRoleOutput;
|
|
61
|
+
export { GetSecretEngineArgs, GetSecretEngineResult, GetSecretEngineOutputArgs } from "./getSecretEngine";
|
|
62
|
+
export declare const getSecretEngine: typeof import("./getSecretEngine").getSecretEngine;
|
|
63
|
+
export declare const getSecretEngineOutput: typeof import("./getSecretEngine").getSecretEngineOutput;
|
|
70
64
|
export { GetSecretStoreArgs, GetSecretStoreResult, GetSecretStoreOutputArgs } from "./getSecretStore";
|
|
71
65
|
export declare const getSecretStore: typeof import("./getSecretStore").getSecretStore;
|
|
72
66
|
export declare const getSecretStoreOutput: typeof import("./getSecretStore").getSecretStoreOutput;
|
|
@@ -88,6 +82,9 @@ export declare const IdentityAlias: typeof import("./identityAlias").IdentityAli
|
|
|
88
82
|
export { IdentitySetArgs, IdentitySetState } from "./identitySet";
|
|
89
83
|
export type IdentitySet = import("./identitySet").IdentitySet;
|
|
90
84
|
export declare const IdentitySet: typeof import("./identitySet").IdentitySet;
|
|
85
|
+
export { ManagedSecretArgs, ManagedSecretState } from "./managedSecret";
|
|
86
|
+
export type ManagedSecret = import("./managedSecret").ManagedSecret;
|
|
87
|
+
export declare const ManagedSecret: typeof import("./managedSecret").ManagedSecret;
|
|
91
88
|
export { NodeArgs, NodeState } from "./node";
|
|
92
89
|
export type Node = import("./node").Node;
|
|
93
90
|
export declare const Node: typeof import("./node").Node;
|
|
@@ -106,9 +103,7 @@ export declare const PeeringGroupResource: typeof import("./peeringGroupResource
|
|
|
106
103
|
export { PolicyArgs, PolicyState } from "./policy";
|
|
107
104
|
export type Policy = import("./policy").Policy;
|
|
108
105
|
export declare const Policy: typeof import("./policy").Policy;
|
|
109
|
-
export
|
|
110
|
-
export type Provider = import("./provider").Provider;
|
|
111
|
-
export declare const Provider: typeof import("./provider").Provider;
|
|
106
|
+
export * from "./provider";
|
|
112
107
|
export { ProxyClusterKeyArgs, ProxyClusterKeyState } from "./proxyClusterKey";
|
|
113
108
|
export type ProxyClusterKey = import("./proxyClusterKey").ProxyClusterKey;
|
|
114
109
|
export declare const ProxyClusterKey: typeof import("./proxyClusterKey").ProxyClusterKey;
|
|
@@ -121,6 +116,9 @@ export declare const Resource: typeof import("./resource").Resource;
|
|
|
121
116
|
export { RoleArgs, RoleState } from "./role";
|
|
122
117
|
export type Role = import("./role").Role;
|
|
123
118
|
export declare const Role: typeof import("./role").Role;
|
|
119
|
+
export { SecretEngineArgs, SecretEngineState } from "./secretEngine";
|
|
120
|
+
export type SecretEngine = import("./secretEngine").SecretEngine;
|
|
121
|
+
export declare const SecretEngine: typeof import("./secretEngine").SecretEngine;
|
|
124
122
|
export { SecretStoreArgs, SecretStoreState } from "./secretStore";
|
|
125
123
|
export type SecretStore = import("./secretStore").SecretStore;
|
|
126
124
|
export declare const SecretStore: typeof import("./secretStore").SecretStore;
|