@pierskarsenbarg/sdm 1.30.0 → 1.32.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 +3 -6
- package/account.js +5 -5
- package/account.js.map +1 -1
- package/accountAttachment.js +7 -7
- package/accountAttachment.js.map +1 -1
- package/accountGroup.d.ts +87 -0
- package/accountGroup.js +84 -0
- package/accountGroup.js.map +1 -0
- package/approvalWorkflow.d.ts +6 -0
- package/approvalWorkflow.js +16 -10
- package/approvalWorkflow.js.map +1 -1
- package/getAccount.d.ts +2 -2
- package/getAccountGroup.d.ts +101 -0
- package/getAccountGroup.js +66 -0
- package/getAccountGroup.js.map +1 -0
- package/getGroup.d.ts +127 -0
- package/getGroup.js +72 -0
- package/getGroup.js.map +1 -0
- package/getGroupRole.d.ts +101 -0
- package/getGroupRole.js +66 -0
- package/getGroupRole.js.map +1 -0
- package/getNode.d.ts +2 -2
- package/getResource.d.ts +2 -2
- package/getSecretEngine.d.ts +74 -2
- package/getSecretEngine.js +12 -0
- package/getSecretEngine.js.map +1 -1
- package/getSecretStore.d.ts +2 -2
- package/getWorkflow.d.ts +32 -0
- package/getWorkflow.js +32 -0
- package/getWorkflow.js.map +1 -1
- package/getWorkflowRole.d.ts +10 -4
- package/getWorkflowRole.js +10 -4
- package/getWorkflowRole.js.map +1 -1
- package/group.d.ts +110 -0
- package/group.js +79 -0
- package/group.js.map +1 -0
- package/groupRole.d.ts +87 -0
- package/groupRole.js +84 -0
- package/groupRole.js.map +1 -0
- package/identityAlias.js +10 -10
- package/identityAlias.js.map +1 -1
- package/identitySet.js +3 -3
- package/identitySet.js.map +1 -1
- package/index.d.ts +18 -0
- package/index.js +26 -2
- package/index.js.map +1 -1
- package/managedSecret.js +14 -14
- package/managedSecret.js.map +1 -1
- package/managedSecretValue.js +8 -8
- package/managedSecretValue.js.map +1 -1
- package/node.js +7 -7
- package/node.js.map +1 -1
- package/package.json +1 -1
- package/peeringGroup.js +3 -3
- package/peeringGroup.js.map +1 -1
- package/peeringGroupNode.js +5 -5
- package/peeringGroupNode.js.map +1 -1
- package/peeringGroupPeer.js +5 -5
- package/peeringGroupPeer.js.map +1 -1
- package/peeringGroupResource.js +5 -5
- package/peeringGroupResource.js.map +1 -1
- package/policy.js +7 -7
- package/policy.js.map +1 -1
- package/provider.js +4 -4
- package/provider.js.map +1 -1
- package/proxyClusterKey.js +5 -5
- package/proxyClusterKey.js.map +1 -1
- package/remoteIdentity.js +10 -10
- package/remoteIdentity.js.map +1 -1
- package/resource.d.ts +96 -27
- package/resource.js +221 -215
- package/resource.js.map +1 -1
- package/role.d.ts +37 -0
- package/role.js +45 -8
- package/role.js.map +1 -1
- package/secretEngine.d.ts +9 -15
- package/secretEngine.js +7 -5
- package/secretEngine.js.map +1 -1
- package/secretStore.d.ts +3 -6
- package/secretStore.js +47 -47
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +613 -348
- package/types/output.d.ts +1299 -688
- package/utilities.js +18 -29
- package/utilities.js.map +1 -1
- package/workflow.d.ts +42 -0
- package/workflow.js +61 -19
- package/workflow.js.map +1 -1
- package/workflowApprover.js +8 -8
- package/workflowApprover.js.map +1 -1
- package/workflowRole.d.ts +6 -2
- package/workflowRole.js +13 -9
- package/workflowRole.js.map +1 -1
package/role.js
CHANGED
|
@@ -35,6 +35,43 @@ const utilities = require("./utilities");
|
|
|
35
35
|
* ids: ["rs-093e6f3061eb4dad"],
|
|
36
36
|
* },
|
|
37
37
|
* ])});
|
|
38
|
+
* const k8s_admin = new sdm.Role("k8s-admin", {accessRules: JSON.stringify([{
|
|
39
|
+
* tags: {
|
|
40
|
+
* env: "production",
|
|
41
|
+
* },
|
|
42
|
+
* privileges: {
|
|
43
|
+
* k8s: {
|
|
44
|
+
* groups: ["system:masters"],
|
|
45
|
+
* },
|
|
46
|
+
* },
|
|
47
|
+
* }])});
|
|
48
|
+
* const k8s_developers = new sdm.Role("k8s-developers", {accessRules: JSON.stringify([
|
|
49
|
+
* {
|
|
50
|
+
* type: "amazon_eks",
|
|
51
|
+
* tags: {
|
|
52
|
+
* env: "dev",
|
|
53
|
+
* },
|
|
54
|
+
* privileges: {
|
|
55
|
+
* k8s: {
|
|
56
|
+
* groups: [
|
|
57
|
+
* "developers",
|
|
58
|
+
* "viewers",
|
|
59
|
+
* ],
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* {
|
|
64
|
+
* type: "kubernetes",
|
|
65
|
+
* tags: {
|
|
66
|
+
* region: "us-west",
|
|
67
|
+
* },
|
|
68
|
+
* privileges: {
|
|
69
|
+
* k8s: {
|
|
70
|
+
* groups: ["edit"],
|
|
71
|
+
* },
|
|
72
|
+
* },
|
|
73
|
+
* },
|
|
74
|
+
* ])});
|
|
38
75
|
* ```
|
|
39
76
|
* This resource can be imported using the import command.
|
|
40
77
|
*
|
|
@@ -57,7 +94,7 @@ class Role extends pulumi.CustomResource {
|
|
|
57
94
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
58
95
|
*/
|
|
59
96
|
static get(name, id, state, opts) {
|
|
60
|
-
return new Role(name, state,
|
|
97
|
+
return new Role(name, state, { ...opts, id: id });
|
|
61
98
|
}
|
|
62
99
|
/**
|
|
63
100
|
* Returns true if the given object is an instance of Role. This is designed to work even
|
|
@@ -74,16 +111,16 @@ class Role extends pulumi.CustomResource {
|
|
|
74
111
|
opts = opts || {};
|
|
75
112
|
if (opts.id) {
|
|
76
113
|
const state = argsOrState;
|
|
77
|
-
resourceInputs["accessRules"] = state
|
|
78
|
-
resourceInputs["managedBy"] = state
|
|
79
|
-
resourceInputs["name"] = state
|
|
80
|
-
resourceInputs["tags"] = state
|
|
114
|
+
resourceInputs["accessRules"] = state?.accessRules;
|
|
115
|
+
resourceInputs["managedBy"] = state?.managedBy;
|
|
116
|
+
resourceInputs["name"] = state?.name;
|
|
117
|
+
resourceInputs["tags"] = state?.tags;
|
|
81
118
|
}
|
|
82
119
|
else {
|
|
83
120
|
const args = argsOrState;
|
|
84
|
-
resourceInputs["accessRules"] = args
|
|
85
|
-
resourceInputs["name"] = args
|
|
86
|
-
resourceInputs["tags"] = args
|
|
121
|
+
resourceInputs["accessRules"] = args?.accessRules;
|
|
122
|
+
resourceInputs["name"] = args?.name;
|
|
123
|
+
resourceInputs["tags"] = args?.tags;
|
|
87
124
|
resourceInputs["managedBy"] = undefined /*out*/;
|
|
88
125
|
}
|
|
89
126
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/role.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"role.js","sourceRoot":"","sources":["../role.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"role.js","sourceRoot":"","sources":["../role.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6EG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC3D,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,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAkC,EAAE,IAAmC;QAC7F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoC,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;;AAvEL,oBAwEC;AA1DG,gBAAgB;AACO,iBAAY,GAAG,qBAAqB,CAAC"}
|
package/secretEngine.d.ts
CHANGED
|
@@ -29,14 +29,12 @@ export declare class SecretEngine extends pulumi.CustomResource {
|
|
|
29
29
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
30
30
|
*/
|
|
31
31
|
static isInstance(obj: any): obj is SecretEngine;
|
|
32
|
-
/**
|
|
33
|
-
* ActiveDirectoryEngine is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
34
|
-
*/
|
|
35
32
|
readonly activeDirectory: pulumi.Output<outputs.SecretEngineActiveDirectory | undefined>;
|
|
33
|
+
readonly keyValue: pulumi.Output<outputs.SecretEngineKeyValue | undefined>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* PostgresEngine is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
38
36
|
*/
|
|
39
|
-
readonly
|
|
37
|
+
readonly postgresSecretEngine: pulumi.Output<outputs.SecretEnginePostgresSecretEngine | undefined>;
|
|
40
38
|
/**
|
|
41
39
|
* Create a SecretEngine resource with the given unique name, arguments, and options.
|
|
42
40
|
*
|
|
@@ -50,25 +48,21 @@ export declare class SecretEngine extends pulumi.CustomResource {
|
|
|
50
48
|
* Input properties used for looking up and filtering SecretEngine resources.
|
|
51
49
|
*/
|
|
52
50
|
export interface SecretEngineState {
|
|
53
|
-
/**
|
|
54
|
-
* ActiveDirectoryEngine is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
55
|
-
*/
|
|
56
51
|
activeDirectory?: pulumi.Input<inputs.SecretEngineActiveDirectory>;
|
|
52
|
+
keyValue?: pulumi.Input<inputs.SecretEngineKeyValue>;
|
|
57
53
|
/**
|
|
58
|
-
*
|
|
54
|
+
* PostgresEngine is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
59
55
|
*/
|
|
60
|
-
|
|
56
|
+
postgresSecretEngine?: pulumi.Input<inputs.SecretEnginePostgresSecretEngine>;
|
|
61
57
|
}
|
|
62
58
|
/**
|
|
63
59
|
* The set of arguments for constructing a SecretEngine resource.
|
|
64
60
|
*/
|
|
65
61
|
export interface SecretEngineArgs {
|
|
66
|
-
/**
|
|
67
|
-
* ActiveDirectoryEngine is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
68
|
-
*/
|
|
69
62
|
activeDirectory?: pulumi.Input<inputs.SecretEngineActiveDirectory>;
|
|
63
|
+
keyValue?: pulumi.Input<inputs.SecretEngineKeyValue>;
|
|
70
64
|
/**
|
|
71
|
-
*
|
|
65
|
+
* PostgresEngine is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
72
66
|
*/
|
|
73
|
-
|
|
67
|
+
postgresSecretEngine?: pulumi.Input<inputs.SecretEnginePostgresSecretEngine>;
|
|
74
68
|
}
|
package/secretEngine.js
CHANGED
|
@@ -28,7 +28,7 @@ class SecretEngine extends pulumi.CustomResource {
|
|
|
28
28
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
29
29
|
*/
|
|
30
30
|
static get(name, id, state, opts) {
|
|
31
|
-
return new SecretEngine(name, state,
|
|
31
|
+
return new SecretEngine(name, state, { ...opts, id: id });
|
|
32
32
|
}
|
|
33
33
|
/**
|
|
34
34
|
* Returns true if the given object is an instance of SecretEngine. This is designed to work even
|
|
@@ -45,13 +45,15 @@ class SecretEngine extends pulumi.CustomResource {
|
|
|
45
45
|
opts = opts || {};
|
|
46
46
|
if (opts.id) {
|
|
47
47
|
const state = argsOrState;
|
|
48
|
-
resourceInputs["activeDirectory"] = state
|
|
49
|
-
resourceInputs["keyValue"] = state
|
|
48
|
+
resourceInputs["activeDirectory"] = state?.activeDirectory;
|
|
49
|
+
resourceInputs["keyValue"] = state?.keyValue;
|
|
50
|
+
resourceInputs["postgresSecretEngine"] = state?.postgresSecretEngine;
|
|
50
51
|
}
|
|
51
52
|
else {
|
|
52
53
|
const args = argsOrState;
|
|
53
|
-
resourceInputs["activeDirectory"] = args
|
|
54
|
-
resourceInputs["keyValue"] = args
|
|
54
|
+
resourceInputs["activeDirectory"] = args?.activeDirectory;
|
|
55
|
+
resourceInputs["keyValue"] = args?.keyValue;
|
|
56
|
+
resourceInputs["postgresSecretEngine"] = args?.postgresSecretEngine;
|
|
55
57
|
}
|
|
56
58
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
57
59
|
super(SecretEngine.__pulumiType, name, resourceInputs, opts);
|
package/secretEngine.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secretEngine.js","sourceRoot":"","sources":["../secretEngine.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"secretEngine.js","sourceRoot":"","sources":["../secretEngine.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAiBD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;SACxE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA3DL,oCA4DC;AA9CG,gBAAgB;AACO,yBAAY,GAAG,qCAAqC,CAAC"}
|
package/secretStore.d.ts
CHANGED
|
@@ -37,8 +37,7 @@ export declare class SecretStore extends pulumi.CustomResource {
|
|
|
37
37
|
readonly cyberarkConjur: pulumi.Output<outputs.SecretStoreCyberarkConjur | undefined>;
|
|
38
38
|
readonly cyberarkPam: pulumi.Output<outputs.SecretStoreCyberarkPam | undefined>;
|
|
39
39
|
/**
|
|
40
|
-
* CyberarkPAMExperimentalStore is currently unstable, and its API may change, or it may be removed, without a major
|
|
41
|
-
* version bump.
|
|
40
|
+
* CyberarkPAMExperimentalStore is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
42
41
|
*/
|
|
43
42
|
readonly cyberarkPamExperimental: pulumi.Output<outputs.SecretStoreCyberarkPamExperimental | undefined>;
|
|
44
43
|
readonly delineaStore: pulumi.Output<outputs.SecretStoreDelineaStore | undefined>;
|
|
@@ -77,8 +76,7 @@ export interface SecretStoreState {
|
|
|
77
76
|
cyberarkConjur?: pulumi.Input<inputs.SecretStoreCyberarkConjur>;
|
|
78
77
|
cyberarkPam?: pulumi.Input<inputs.SecretStoreCyberarkPam>;
|
|
79
78
|
/**
|
|
80
|
-
* CyberarkPAMExperimentalStore is currently unstable, and its API may change, or it may be removed, without a major
|
|
81
|
-
* version bump.
|
|
79
|
+
* CyberarkPAMExperimentalStore is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
82
80
|
*/
|
|
83
81
|
cyberarkPamExperimental?: pulumi.Input<inputs.SecretStoreCyberarkPamExperimental>;
|
|
84
82
|
delineaStore?: pulumi.Input<inputs.SecretStoreDelineaStore>;
|
|
@@ -109,8 +107,7 @@ export interface SecretStoreArgs {
|
|
|
109
107
|
cyberarkConjur?: pulumi.Input<inputs.SecretStoreCyberarkConjur>;
|
|
110
108
|
cyberarkPam?: pulumi.Input<inputs.SecretStoreCyberarkPam>;
|
|
111
109
|
/**
|
|
112
|
-
* CyberarkPAMExperimentalStore is currently unstable, and its API may change, or it may be removed, without a major
|
|
113
|
-
* version bump.
|
|
110
|
+
* CyberarkPAMExperimentalStore is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
114
111
|
*/
|
|
115
112
|
cyberarkPamExperimental?: pulumi.Input<inputs.SecretStoreCyberarkPamExperimental>;
|
|
116
113
|
delineaStore?: pulumi.Input<inputs.SecretStoreDelineaStore>;
|
package/secretStore.js
CHANGED
|
@@ -29,7 +29,7 @@ class SecretStore extends pulumi.CustomResource {
|
|
|
29
29
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
30
30
|
*/
|
|
31
31
|
static get(name, id, state, opts) {
|
|
32
|
-
return new SecretStore(name, state,
|
|
32
|
+
return new SecretStore(name, state, { ...opts, id: id });
|
|
33
33
|
}
|
|
34
34
|
/**
|
|
35
35
|
* Returns true if the given object is an instance of SecretStore. This is designed to work even
|
|
@@ -46,55 +46,55 @@ class SecretStore extends pulumi.CustomResource {
|
|
|
46
46
|
opts = opts || {};
|
|
47
47
|
if (opts.id) {
|
|
48
48
|
const state = argsOrState;
|
|
49
|
-
resourceInputs["activeDirectoryStore"] = state
|
|
50
|
-
resourceInputs["aws"] = state
|
|
51
|
-
resourceInputs["awsCertX509"] = state
|
|
52
|
-
resourceInputs["azureStore"] = state
|
|
53
|
-
resourceInputs["cyberarkConjur"] = state
|
|
54
|
-
resourceInputs["cyberarkPam"] = state
|
|
55
|
-
resourceInputs["cyberarkPamExperimental"] = state
|
|
56
|
-
resourceInputs["delineaStore"] = state
|
|
57
|
-
resourceInputs["gcpCertX509Store"] = state
|
|
58
|
-
resourceInputs["gcpStore"] = state
|
|
59
|
-
resourceInputs["keyfactorSshStore"] = state
|
|
60
|
-
resourceInputs["keyfactorX509Store"] = state
|
|
61
|
-
resourceInputs["vaultApprole"] = state
|
|
62
|
-
resourceInputs["vaultApproleCertSsh"] = state
|
|
63
|
-
resourceInputs["vaultApproleCertX509"] = state
|
|
64
|
-
resourceInputs["vaultAwsEc2"] = state
|
|
65
|
-
resourceInputs["vaultAwsIam"] = state
|
|
66
|
-
resourceInputs["vaultTls"] = state
|
|
67
|
-
resourceInputs["vaultTlsCertSsh"] = state
|
|
68
|
-
resourceInputs["vaultTlsCertX509"] = state
|
|
69
|
-
resourceInputs["vaultToken"] = state
|
|
70
|
-
resourceInputs["vaultTokenCertSsh"] = state
|
|
71
|
-
resourceInputs["vaultTokenCertX509"] = state
|
|
49
|
+
resourceInputs["activeDirectoryStore"] = state?.activeDirectoryStore;
|
|
50
|
+
resourceInputs["aws"] = state?.aws;
|
|
51
|
+
resourceInputs["awsCertX509"] = state?.awsCertX509;
|
|
52
|
+
resourceInputs["azureStore"] = state?.azureStore;
|
|
53
|
+
resourceInputs["cyberarkConjur"] = state?.cyberarkConjur;
|
|
54
|
+
resourceInputs["cyberarkPam"] = state?.cyberarkPam;
|
|
55
|
+
resourceInputs["cyberarkPamExperimental"] = state?.cyberarkPamExperimental;
|
|
56
|
+
resourceInputs["delineaStore"] = state?.delineaStore;
|
|
57
|
+
resourceInputs["gcpCertX509Store"] = state?.gcpCertX509Store;
|
|
58
|
+
resourceInputs["gcpStore"] = state?.gcpStore;
|
|
59
|
+
resourceInputs["keyfactorSshStore"] = state?.keyfactorSshStore;
|
|
60
|
+
resourceInputs["keyfactorX509Store"] = state?.keyfactorX509Store;
|
|
61
|
+
resourceInputs["vaultApprole"] = state?.vaultApprole;
|
|
62
|
+
resourceInputs["vaultApproleCertSsh"] = state?.vaultApproleCertSsh;
|
|
63
|
+
resourceInputs["vaultApproleCertX509"] = state?.vaultApproleCertX509;
|
|
64
|
+
resourceInputs["vaultAwsEc2"] = state?.vaultAwsEc2;
|
|
65
|
+
resourceInputs["vaultAwsIam"] = state?.vaultAwsIam;
|
|
66
|
+
resourceInputs["vaultTls"] = state?.vaultTls;
|
|
67
|
+
resourceInputs["vaultTlsCertSsh"] = state?.vaultTlsCertSsh;
|
|
68
|
+
resourceInputs["vaultTlsCertX509"] = state?.vaultTlsCertX509;
|
|
69
|
+
resourceInputs["vaultToken"] = state?.vaultToken;
|
|
70
|
+
resourceInputs["vaultTokenCertSsh"] = state?.vaultTokenCertSsh;
|
|
71
|
+
resourceInputs["vaultTokenCertX509"] = state?.vaultTokenCertX509;
|
|
72
72
|
}
|
|
73
73
|
else {
|
|
74
74
|
const args = argsOrState;
|
|
75
|
-
resourceInputs["activeDirectoryStore"] = args
|
|
76
|
-
resourceInputs["aws"] = args
|
|
77
|
-
resourceInputs["awsCertX509"] = args
|
|
78
|
-
resourceInputs["azureStore"] = args
|
|
79
|
-
resourceInputs["cyberarkConjur"] = args
|
|
80
|
-
resourceInputs["cyberarkPam"] = args
|
|
81
|
-
resourceInputs["cyberarkPamExperimental"] = args
|
|
82
|
-
resourceInputs["delineaStore"] = args
|
|
83
|
-
resourceInputs["gcpCertX509Store"] = args
|
|
84
|
-
resourceInputs["gcpStore"] = args
|
|
85
|
-
resourceInputs["keyfactorSshStore"] = args
|
|
86
|
-
resourceInputs["keyfactorX509Store"] = args
|
|
87
|
-
resourceInputs["vaultApprole"] = args
|
|
88
|
-
resourceInputs["vaultApproleCertSsh"] = args
|
|
89
|
-
resourceInputs["vaultApproleCertX509"] = args
|
|
90
|
-
resourceInputs["vaultAwsEc2"] = args
|
|
91
|
-
resourceInputs["vaultAwsIam"] = args
|
|
92
|
-
resourceInputs["vaultTls"] = args
|
|
93
|
-
resourceInputs["vaultTlsCertSsh"] = args
|
|
94
|
-
resourceInputs["vaultTlsCertX509"] = args
|
|
95
|
-
resourceInputs["vaultToken"] = args
|
|
96
|
-
resourceInputs["vaultTokenCertSsh"] = args
|
|
97
|
-
resourceInputs["vaultTokenCertX509"] = args
|
|
75
|
+
resourceInputs["activeDirectoryStore"] = args?.activeDirectoryStore;
|
|
76
|
+
resourceInputs["aws"] = args?.aws;
|
|
77
|
+
resourceInputs["awsCertX509"] = args?.awsCertX509;
|
|
78
|
+
resourceInputs["azureStore"] = args?.azureStore;
|
|
79
|
+
resourceInputs["cyberarkConjur"] = args?.cyberarkConjur;
|
|
80
|
+
resourceInputs["cyberarkPam"] = args?.cyberarkPam;
|
|
81
|
+
resourceInputs["cyberarkPamExperimental"] = args?.cyberarkPamExperimental;
|
|
82
|
+
resourceInputs["delineaStore"] = args?.delineaStore;
|
|
83
|
+
resourceInputs["gcpCertX509Store"] = args?.gcpCertX509Store;
|
|
84
|
+
resourceInputs["gcpStore"] = args?.gcpStore;
|
|
85
|
+
resourceInputs["keyfactorSshStore"] = args?.keyfactorSshStore;
|
|
86
|
+
resourceInputs["keyfactorX509Store"] = args?.keyfactorX509Store;
|
|
87
|
+
resourceInputs["vaultApprole"] = args?.vaultApprole;
|
|
88
|
+
resourceInputs["vaultApproleCertSsh"] = args?.vaultApproleCertSsh;
|
|
89
|
+
resourceInputs["vaultApproleCertX509"] = args?.vaultApproleCertX509;
|
|
90
|
+
resourceInputs["vaultAwsEc2"] = args?.vaultAwsEc2;
|
|
91
|
+
resourceInputs["vaultAwsIam"] = args?.vaultAwsIam;
|
|
92
|
+
resourceInputs["vaultTls"] = args?.vaultTls;
|
|
93
|
+
resourceInputs["vaultTlsCertSsh"] = args?.vaultTlsCertSsh;
|
|
94
|
+
resourceInputs["vaultTlsCertX509"] = args?.vaultTlsCertX509;
|
|
95
|
+
resourceInputs["vaultToken"] = args?.vaultToken;
|
|
96
|
+
resourceInputs["vaultTokenCertSsh"] = args?.vaultTokenCertSsh;
|
|
97
|
+
resourceInputs["vaultTokenCertX509"] = args?.vaultTokenCertX509;
|
|
98
98
|
}
|
|
99
99
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
100
100
|
super(SecretStore.__pulumiType, name, resourceInputs, opts);
|
package/secretStore.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secretStore.js","sourceRoot":"","sources":["../secretStore.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"secretStore.js","sourceRoot":"","sources":["../secretStore.ts"],"names":[],"mappings":"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"}
|