@pierskarsenbarg/sdm 1.26.0 → 1.27.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/approvalWorkflow.d.ts +14 -0
- package/approvalWorkflow.js +2 -0
- package/approvalWorkflow.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/getSecretEngine.d.ts +254 -0
- package/getSecretEngine.js +64 -0
- package/getSecretEngine.js.map +1 -0
- package/index.d.ts +12 -12
- package/index.js +18 -18
- 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/resource.d.ts +15 -9
- package/resource.js +4 -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 +305 -0
- package/types/output.d.ts +591 -20
- 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
package/approvalWorkflow.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
5
|
* ApprovalWorkflows are the mechanism by which requests for access can be viewed by authorized
|
|
4
6
|
* approvers and be approved or denied.
|
|
@@ -41,6 +43,10 @@ export declare class ApprovalWorkflow extends pulumi.CustomResource {
|
|
|
41
43
|
* Approval mode of the ApprovalWorkflow
|
|
42
44
|
*/
|
|
43
45
|
readonly approvalMode: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* The approval steps of this approval workflow
|
|
48
|
+
*/
|
|
49
|
+
readonly approvalSteps: pulumi.Output<outputs.ApprovalWorkflowApprovalStep[] | undefined>;
|
|
44
50
|
/**
|
|
45
51
|
* Optional description of the ApprovalWorkflow.
|
|
46
52
|
*/
|
|
@@ -66,6 +72,10 @@ export interface ApprovalWorkflowState {
|
|
|
66
72
|
* Approval mode of the ApprovalWorkflow
|
|
67
73
|
*/
|
|
68
74
|
approvalMode?: pulumi.Input<string>;
|
|
75
|
+
/**
|
|
76
|
+
* The approval steps of this approval workflow
|
|
77
|
+
*/
|
|
78
|
+
approvalSteps?: pulumi.Input<pulumi.Input<inputs.ApprovalWorkflowApprovalStep>[]>;
|
|
69
79
|
/**
|
|
70
80
|
* Optional description of the ApprovalWorkflow.
|
|
71
81
|
*/
|
|
@@ -83,6 +93,10 @@ export interface ApprovalWorkflowArgs {
|
|
|
83
93
|
* Approval mode of the ApprovalWorkflow
|
|
84
94
|
*/
|
|
85
95
|
approvalMode: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The approval steps of this approval workflow
|
|
98
|
+
*/
|
|
99
|
+
approvalSteps?: pulumi.Input<pulumi.Input<inputs.ApprovalWorkflowApprovalStep>[]>;
|
|
86
100
|
/**
|
|
87
101
|
* Optional description of the ApprovalWorkflow.
|
|
88
102
|
*/
|
package/approvalWorkflow.js
CHANGED
|
@@ -56,6 +56,7 @@ class ApprovalWorkflow extends pulumi.CustomResource {
|
|
|
56
56
|
if (opts.id) {
|
|
57
57
|
const state = argsOrState;
|
|
58
58
|
resourceInputs["approvalMode"] = state ? state.approvalMode : undefined;
|
|
59
|
+
resourceInputs["approvalSteps"] = state ? state.approvalSteps : undefined;
|
|
59
60
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
60
61
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
61
62
|
}
|
|
@@ -65,6 +66,7 @@ class ApprovalWorkflow extends pulumi.CustomResource {
|
|
|
65
66
|
throw new Error("Missing required property 'approvalMode'");
|
|
66
67
|
}
|
|
67
68
|
resourceInputs["approvalMode"] = args ? args.approvalMode : undefined;
|
|
69
|
+
resourceInputs["approvalSteps"] = args ? args.approvalSteps : undefined;
|
|
68
70
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
69
71
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
70
72
|
}
|
package/approvalWorkflow.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"approvalWorkflow.js","sourceRoot":"","sources":["../approvalWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"approvalWorkflow.js","sourceRoot":"","sources":["../approvalWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;IA2BD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;;AA1EL,4CA2EC;AA7DG,gBAAgB;AACO,6BAAY,GAAG,6CAA6C,CAAC"}
|
package/getApprovalWorkflow.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
2
3
|
import * as outputs from "./types/output";
|
|
3
4
|
/**
|
|
4
5
|
* ApprovalWorkflows are the mechanism by which requests for access can be viewed by authorized
|
|
@@ -28,6 +29,10 @@ export interface GetApprovalWorkflowArgs {
|
|
|
28
29
|
* Approval mode of the ApprovalWorkflow
|
|
29
30
|
*/
|
|
30
31
|
approvalMode?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The approval steps of this approval workflow
|
|
34
|
+
*/
|
|
35
|
+
approvalSteps?: inputs.GetApprovalWorkflowApprovalStep[];
|
|
31
36
|
/**
|
|
32
37
|
* Optional description of the ApprovalWorkflow.
|
|
33
38
|
*/
|
|
@@ -49,6 +54,10 @@ export interface GetApprovalWorkflowResult {
|
|
|
49
54
|
* Approval mode of the ApprovalWorkflow
|
|
50
55
|
*/
|
|
51
56
|
readonly approvalMode?: string;
|
|
57
|
+
/**
|
|
58
|
+
* The approval steps of this approval workflow
|
|
59
|
+
*/
|
|
60
|
+
readonly approvalSteps?: outputs.GetApprovalWorkflowApprovalStep[];
|
|
52
61
|
/**
|
|
53
62
|
* A list where each element has the following attributes:
|
|
54
63
|
*/
|
|
@@ -98,6 +107,10 @@ export interface GetApprovalWorkflowOutputArgs {
|
|
|
98
107
|
* Approval mode of the ApprovalWorkflow
|
|
99
108
|
*/
|
|
100
109
|
approvalMode?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* The approval steps of this approval workflow
|
|
112
|
+
*/
|
|
113
|
+
approvalSteps?: pulumi.Input<pulumi.Input<inputs.GetApprovalWorkflowApprovalStepArgs>[]>;
|
|
101
114
|
/**
|
|
102
115
|
* Optional description of the ApprovalWorkflow.
|
|
103
116
|
*/
|
package/getApprovalWorkflow.js
CHANGED
|
@@ -29,6 +29,7 @@ function getApprovalWorkflow(args, opts) {
|
|
|
29
29
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
30
|
return pulumi.runtime.invoke("sdm:index/getApprovalWorkflow:getApprovalWorkflow", {
|
|
31
31
|
"approvalMode": args.approvalMode,
|
|
32
|
+
"approvalSteps": args.approvalSteps,
|
|
32
33
|
"description": args.description,
|
|
33
34
|
"id": args.id,
|
|
34
35
|
"name": args.name,
|
|
@@ -59,6 +60,7 @@ function getApprovalWorkflowOutput(args, opts) {
|
|
|
59
60
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
60
61
|
return pulumi.runtime.invokeOutput("sdm:index/getApprovalWorkflow:getApprovalWorkflow", {
|
|
61
62
|
"approvalMode": args.approvalMode,
|
|
63
|
+
"approvalSteps": args.approvalSteps,
|
|
62
64
|
"description": args.description,
|
|
63
65
|
"id": args.id,
|
|
64
66
|
"name": args.name,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getApprovalWorkflow.js","sourceRoot":"","sources":["../getApprovalWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;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,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getApprovalWorkflow.js","sourceRoot":"","sources":["../getApprovalWorkflow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;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,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,kDAUC;AA6DD;;;;;;;;;;;;;;;;;;GAkBG;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,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8DAUC"}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* ManagedSecret contains details about managed secret
|
|
5
|
+
*/
|
|
6
|
+
export declare function getManagedSecret(args?: GetManagedSecretArgs, opts?: pulumi.InvokeOptions): Promise<GetManagedSecretResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getManagedSecret.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetManagedSecretArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Unique identifier of the Managed Secret.
|
|
13
|
+
*/
|
|
14
|
+
id?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Unique human-readable name of the Managed Secret.
|
|
17
|
+
*/
|
|
18
|
+
name?: string;
|
|
19
|
+
/**
|
|
20
|
+
* An ID of a Secret Engine linked with the Managed Secret.
|
|
21
|
+
*/
|
|
22
|
+
secretEngineId?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Tags is a map of key, value pairs.
|
|
25
|
+
*/
|
|
26
|
+
tags?: {
|
|
27
|
+
[key: string]: string;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Sensitive value of the secret.
|
|
31
|
+
*/
|
|
32
|
+
value?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* A collection of values returned by getManagedSecret.
|
|
36
|
+
*/
|
|
37
|
+
export interface GetManagedSecretResult {
|
|
38
|
+
/**
|
|
39
|
+
* public part of the secret value
|
|
40
|
+
*/
|
|
41
|
+
readonly config: string;
|
|
42
|
+
/**
|
|
43
|
+
* Timestamp of when secret is going to be rotated
|
|
44
|
+
*/
|
|
45
|
+
readonly expiresAt: string;
|
|
46
|
+
/**
|
|
47
|
+
* Unique identifier of the Managed Secret.
|
|
48
|
+
*/
|
|
49
|
+
readonly id?: string;
|
|
50
|
+
/**
|
|
51
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
52
|
+
*/
|
|
53
|
+
readonly ids: string[];
|
|
54
|
+
/**
|
|
55
|
+
* Timestamp of when secret was last rotated
|
|
56
|
+
*/
|
|
57
|
+
readonly lastRotatedAt: string;
|
|
58
|
+
/**
|
|
59
|
+
* A list where each element has the following attributes:
|
|
60
|
+
*/
|
|
61
|
+
readonly managedSecrets: outputs.GetManagedSecretManagedSecret[];
|
|
62
|
+
/**
|
|
63
|
+
* Unique human-readable name of the Managed Secret.
|
|
64
|
+
*/
|
|
65
|
+
readonly name?: string;
|
|
66
|
+
/**
|
|
67
|
+
* An ID of a Secret Engine linked with the Managed Secret.
|
|
68
|
+
*/
|
|
69
|
+
readonly secretEngineId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* Path in a secret store.
|
|
72
|
+
*/
|
|
73
|
+
readonly secretStorePath: string;
|
|
74
|
+
/**
|
|
75
|
+
* Tags is a map of key, value pairs.
|
|
76
|
+
*/
|
|
77
|
+
readonly tags?: {
|
|
78
|
+
[key: string]: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Sensitive value of the secret.
|
|
82
|
+
*/
|
|
83
|
+
readonly value?: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* ManagedSecret contains details about managed secret
|
|
87
|
+
*/
|
|
88
|
+
export declare function getManagedSecretOutput(args?: GetManagedSecretOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetManagedSecretResult>;
|
|
89
|
+
/**
|
|
90
|
+
* A collection of arguments for invoking getManagedSecret.
|
|
91
|
+
*/
|
|
92
|
+
export interface GetManagedSecretOutputArgs {
|
|
93
|
+
/**
|
|
94
|
+
* Unique identifier of the Managed Secret.
|
|
95
|
+
*/
|
|
96
|
+
id?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* Unique human-readable name of the Managed Secret.
|
|
99
|
+
*/
|
|
100
|
+
name?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* An ID of a Secret Engine linked with the Managed Secret.
|
|
103
|
+
*/
|
|
104
|
+
secretEngineId?: pulumi.Input<string>;
|
|
105
|
+
/**
|
|
106
|
+
* Tags is a map of key, value pairs.
|
|
107
|
+
*/
|
|
108
|
+
tags?: pulumi.Input<{
|
|
109
|
+
[key: string]: pulumi.Input<string>;
|
|
110
|
+
}>;
|
|
111
|
+
/**
|
|
112
|
+
* Sensitive value of the secret.
|
|
113
|
+
*/
|
|
114
|
+
value?: pulumi.Input<string>;
|
|
115
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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.getManagedSecretOutput = exports.getManagedSecret = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ManagedSecret contains details about managed secret
|
|
10
|
+
*/
|
|
11
|
+
function getManagedSecret(args, opts) {
|
|
12
|
+
args = args || {};
|
|
13
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
+
return pulumi.runtime.invoke("sdm:index/getManagedSecret:getManagedSecret", {
|
|
15
|
+
"id": args.id,
|
|
16
|
+
"name": args.name,
|
|
17
|
+
"secretEngineId": args.secretEngineId,
|
|
18
|
+
"tags": args.tags,
|
|
19
|
+
"value": args.value,
|
|
20
|
+
}, opts);
|
|
21
|
+
}
|
|
22
|
+
exports.getManagedSecret = getManagedSecret;
|
|
23
|
+
/**
|
|
24
|
+
* ManagedSecret contains details about managed secret
|
|
25
|
+
*/
|
|
26
|
+
function getManagedSecretOutput(args, opts) {
|
|
27
|
+
args = args || {};
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invokeOutput("sdm:index/getManagedSecret:getManagedSecret", {
|
|
30
|
+
"id": args.id,
|
|
31
|
+
"name": args.name,
|
|
32
|
+
"secretEngineId": args.secretEngineId,
|
|
33
|
+
"tags": args.tags,
|
|
34
|
+
"value": args.value,
|
|
35
|
+
}, opts);
|
|
36
|
+
}
|
|
37
|
+
exports.getManagedSecretOutput = getManagedSecretOutput;
|
|
38
|
+
//# sourceMappingURL=getManagedSecret.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getManagedSecret.js","sourceRoot":"","sources":["../getManagedSecret.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,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,6CAA6C,EAAE;QACxE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,4CAUC;AA6ED;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAAiC;IACvG,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,6CAA6C,EAAE;QAC9E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,wDAUC"}
|
|
@@ -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"}
|