@pierskarsenbarg/sdm 1.25.1 → 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 +313 -0
- package/types/output.d.ts +607 -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/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;
|
|
@@ -121,6 +118,9 @@ export declare const Resource: typeof import("./resource").Resource;
|
|
|
121
118
|
export { RoleArgs, RoleState } from "./role";
|
|
122
119
|
export type Role = import("./role").Role;
|
|
123
120
|
export declare const Role: typeof import("./role").Role;
|
|
121
|
+
export { SecretEngineArgs, SecretEngineState } from "./secretEngine";
|
|
122
|
+
export type SecretEngine = import("./secretEngine").SecretEngine;
|
|
123
|
+
export declare const SecretEngine: typeof import("./secretEngine").SecretEngine;
|
|
124
124
|
export { SecretStoreArgs, SecretStoreState } from "./secretStore";
|
|
125
125
|
export type SecretStore = import("./secretStore").SecretStore;
|
|
126
126
|
export declare const SecretStore: typeof import("./secretStore").SecretStore;
|
package/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
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
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getWorkflowRole = exports.getWorkflowApproverOutput = exports.getWorkflowApprover = exports.getWorkflowOutput = exports.getWorkflow = exports.getSshCaPubkeyOutput = exports.getSshCaPubkey = exports.getSecretStoreOutput = exports.getSecretStore = exports.getRoleOutput = exports.getRole = exports.getResourceOutput = exports.getResource = exports.getRemoteIdentityGroupOutput = exports.getRemoteIdentityGroup = exports.getRemoteIdentityOutput = exports.getRemoteIdentity = exports.getProxyClusterKeyOutput = exports.getProxyClusterKey = exports.getPolicyOutput = exports.getPolicy = exports.getPeeringGroupResourceOutput = exports.getPeeringGroupResource = exports.getPeeringGroupPeerOutput = exports.getPeeringGroupPeer = exports.getPeeringGroupNodeOutput = exports.getPeeringGroupNode = exports.getPeeringGroupOutput = exports.getPeeringGroup = exports.getNodeOutput = exports.getNode = exports.
|
|
6
|
-
exports.types = exports.config = exports.WorkflowRole = exports.WorkflowApprover = exports.Workflow = exports.SecretStore = exports.Role = exports.Resource = exports.RemoteIdentity = exports.ProxyClusterKey = exports.Provider = exports.Policy = exports.PeeringGroupResource = exports.PeeringGroupPeer = exports.PeeringGroupNode = exports.PeeringGroup = exports.Node = exports.
|
|
5
|
+
exports.IdentityAlias = exports.getWorkflowRoleOutput = exports.getWorkflowRole = exports.getWorkflowApproverOutput = exports.getWorkflowApprover = exports.getWorkflowOutput = exports.getWorkflow = exports.getSshCaPubkeyOutput = exports.getSshCaPubkey = exports.getSecretStoreOutput = exports.getSecretStore = exports.getSecretEngineOutput = exports.getSecretEngine = exports.getRoleOutput = exports.getRole = exports.getResourceOutput = exports.getResource = exports.getRemoteIdentityGroupOutput = exports.getRemoteIdentityGroup = exports.getRemoteIdentityOutput = exports.getRemoteIdentity = exports.getProxyClusterKeyOutput = exports.getProxyClusterKey = exports.getPolicyOutput = exports.getPolicy = exports.getPeeringGroupResourceOutput = exports.getPeeringGroupResource = exports.getPeeringGroupPeerOutput = exports.getPeeringGroupPeer = exports.getPeeringGroupNodeOutput = exports.getPeeringGroupNode = exports.getPeeringGroupOutput = exports.getPeeringGroup = exports.getNodeOutput = exports.getNode = exports.getManagedSecretOutput = exports.getManagedSecret = exports.getIdentitySetOutput = exports.getIdentitySet = exports.getIdentityAliasOutput = exports.getIdentityAlias = exports.getApprovalWorkflowOutput = exports.getApprovalWorkflow = exports.getAccountAttachmentOutput = exports.getAccountAttachment = exports.getAccountOutput = exports.getAccount = exports.ApprovalWorkflow = exports.AccountAttachment = exports.Account = void 0;
|
|
6
|
+
exports.types = exports.config = exports.WorkflowRole = exports.WorkflowApprover = exports.Workflow = exports.SecretStore = exports.SecretEngine = exports.Role = exports.Resource = exports.RemoteIdentity = exports.ProxyClusterKey = exports.Provider = exports.Policy = exports.PeeringGroupResource = exports.PeeringGroupPeer = exports.PeeringGroupNode = exports.PeeringGroup = exports.Node = exports.ManagedSecret = exports.IdentitySet = void 0;
|
|
7
7
|
const pulumi = require("@pulumi/pulumi");
|
|
8
8
|
const utilities = require("./utilities");
|
|
9
9
|
exports.Account = null;
|
|
@@ -12,10 +12,6 @@ exports.AccountAttachment = null;
|
|
|
12
12
|
utilities.lazyLoad(exports, ["AccountAttachment"], () => require("./accountAttachment"));
|
|
13
13
|
exports.ApprovalWorkflow = null;
|
|
14
14
|
utilities.lazyLoad(exports, ["ApprovalWorkflow"], () => require("./approvalWorkflow"));
|
|
15
|
-
exports.ApprovalWorkflowApprover = null;
|
|
16
|
-
utilities.lazyLoad(exports, ["ApprovalWorkflowApprover"], () => require("./approvalWorkflowApprover"));
|
|
17
|
-
exports.ApprovalWorkflowStep = null;
|
|
18
|
-
utilities.lazyLoad(exports, ["ApprovalWorkflowStep"], () => require("./approvalWorkflowStep"));
|
|
19
15
|
exports.getAccount = null;
|
|
20
16
|
exports.getAccountOutput = null;
|
|
21
17
|
utilities.lazyLoad(exports, ["getAccount", "getAccountOutput"], () => require("./getAccount"));
|
|
@@ -25,18 +21,15 @@ utilities.lazyLoad(exports, ["getAccountAttachment", "getAccountAttachmentOutput
|
|
|
25
21
|
exports.getApprovalWorkflow = null;
|
|
26
22
|
exports.getApprovalWorkflowOutput = null;
|
|
27
23
|
utilities.lazyLoad(exports, ["getApprovalWorkflow", "getApprovalWorkflowOutput"], () => require("./getApprovalWorkflow"));
|
|
28
|
-
exports.getApprovalWorkflowApprover = null;
|
|
29
|
-
exports.getApprovalWorkflowApproverOutput = null;
|
|
30
|
-
utilities.lazyLoad(exports, ["getApprovalWorkflowApprover", "getApprovalWorkflowApproverOutput"], () => require("./getApprovalWorkflowApprover"));
|
|
31
|
-
exports.getApprovalWorkflowStep = null;
|
|
32
|
-
exports.getApprovalWorkflowStepOutput = null;
|
|
33
|
-
utilities.lazyLoad(exports, ["getApprovalWorkflowStep", "getApprovalWorkflowStepOutput"], () => require("./getApprovalWorkflowStep"));
|
|
34
24
|
exports.getIdentityAlias = null;
|
|
35
25
|
exports.getIdentityAliasOutput = null;
|
|
36
26
|
utilities.lazyLoad(exports, ["getIdentityAlias", "getIdentityAliasOutput"], () => require("./getIdentityAlias"));
|
|
37
27
|
exports.getIdentitySet = null;
|
|
38
28
|
exports.getIdentitySetOutput = null;
|
|
39
29
|
utilities.lazyLoad(exports, ["getIdentitySet", "getIdentitySetOutput"], () => require("./getIdentitySet"));
|
|
30
|
+
exports.getManagedSecret = null;
|
|
31
|
+
exports.getManagedSecretOutput = null;
|
|
32
|
+
utilities.lazyLoad(exports, ["getManagedSecret", "getManagedSecretOutput"], () => require("./getManagedSecret"));
|
|
40
33
|
exports.getNode = null;
|
|
41
34
|
exports.getNodeOutput = null;
|
|
42
35
|
utilities.lazyLoad(exports, ["getNode", "getNodeOutput"], () => require("./getNode"));
|
|
@@ -70,6 +63,9 @@ utilities.lazyLoad(exports, ["getResource", "getResourceOutput"], () => require(
|
|
|
70
63
|
exports.getRole = null;
|
|
71
64
|
exports.getRoleOutput = null;
|
|
72
65
|
utilities.lazyLoad(exports, ["getRole", "getRoleOutput"], () => require("./getRole"));
|
|
66
|
+
exports.getSecretEngine = null;
|
|
67
|
+
exports.getSecretEngineOutput = null;
|
|
68
|
+
utilities.lazyLoad(exports, ["getSecretEngine", "getSecretEngineOutput"], () => require("./getSecretEngine"));
|
|
73
69
|
exports.getSecretStore = null;
|
|
74
70
|
exports.getSecretStoreOutput = null;
|
|
75
71
|
utilities.lazyLoad(exports, ["getSecretStore", "getSecretStoreOutput"], () => require("./getSecretStore"));
|
|
@@ -89,6 +85,8 @@ exports.IdentityAlias = null;
|
|
|
89
85
|
utilities.lazyLoad(exports, ["IdentityAlias"], () => require("./identityAlias"));
|
|
90
86
|
exports.IdentitySet = null;
|
|
91
87
|
utilities.lazyLoad(exports, ["IdentitySet"], () => require("./identitySet"));
|
|
88
|
+
exports.ManagedSecret = null;
|
|
89
|
+
utilities.lazyLoad(exports, ["ManagedSecret"], () => require("./managedSecret"));
|
|
92
90
|
exports.Node = null;
|
|
93
91
|
utilities.lazyLoad(exports, ["Node"], () => require("./node"));
|
|
94
92
|
exports.PeeringGroup = null;
|
|
@@ -111,6 +109,8 @@ exports.Resource = null;
|
|
|
111
109
|
utilities.lazyLoad(exports, ["Resource"], () => require("./resource"));
|
|
112
110
|
exports.Role = null;
|
|
113
111
|
utilities.lazyLoad(exports, ["Role"], () => require("./role"));
|
|
112
|
+
exports.SecretEngine = null;
|
|
113
|
+
utilities.lazyLoad(exports, ["SecretEngine"], () => require("./secretEngine"));
|
|
114
114
|
exports.SecretStore = null;
|
|
115
115
|
utilities.lazyLoad(exports, ["SecretStore"], () => require("./secretStore"));
|
|
116
116
|
exports.Workflow = null;
|
|
@@ -134,14 +134,12 @@ const _module = {
|
|
|
134
134
|
return new exports.AccountAttachment(name, undefined, { urn });
|
|
135
135
|
case "sdm:index/approvalWorkflow:ApprovalWorkflow":
|
|
136
136
|
return new exports.ApprovalWorkflow(name, undefined, { urn });
|
|
137
|
-
case "sdm:index/approvalWorkflowApprover:ApprovalWorkflowApprover":
|
|
138
|
-
return new exports.ApprovalWorkflowApprover(name, undefined, { urn });
|
|
139
|
-
case "sdm:index/approvalWorkflowStep:ApprovalWorkflowStep":
|
|
140
|
-
return new exports.ApprovalWorkflowStep(name, undefined, { urn });
|
|
141
137
|
case "sdm:index/identityAlias:IdentityAlias":
|
|
142
138
|
return new exports.IdentityAlias(name, undefined, { urn });
|
|
143
139
|
case "sdm:index/identitySet:IdentitySet":
|
|
144
140
|
return new exports.IdentitySet(name, undefined, { urn });
|
|
141
|
+
case "sdm:index/managedSecret:ManagedSecret":
|
|
142
|
+
return new exports.ManagedSecret(name, undefined, { urn });
|
|
145
143
|
case "sdm:index/node:Node":
|
|
146
144
|
return new exports.Node(name, undefined, { urn });
|
|
147
145
|
case "sdm:index/peeringGroup:PeeringGroup":
|
|
@@ -162,6 +160,8 @@ const _module = {
|
|
|
162
160
|
return new exports.Resource(name, undefined, { urn });
|
|
163
161
|
case "sdm:index/role:Role":
|
|
164
162
|
return new exports.Role(name, undefined, { urn });
|
|
163
|
+
case "sdm:index/secretEngine:SecretEngine":
|
|
164
|
+
return new exports.SecretEngine(name, undefined, { urn });
|
|
165
165
|
case "sdm:index/secretStore:SecretStore":
|
|
166
166
|
return new exports.SecretStore(name, undefined, { urn });
|
|
167
167
|
case "sdm:index/workflow:Workflow":
|
|
@@ -178,10 +178,9 @@ const _module = {
|
|
|
178
178
|
pulumi.runtime.registerResourceModule("sdm", "index/account", _module);
|
|
179
179
|
pulumi.runtime.registerResourceModule("sdm", "index/accountAttachment", _module);
|
|
180
180
|
pulumi.runtime.registerResourceModule("sdm", "index/approvalWorkflow", _module);
|
|
181
|
-
pulumi.runtime.registerResourceModule("sdm", "index/approvalWorkflowApprover", _module);
|
|
182
|
-
pulumi.runtime.registerResourceModule("sdm", "index/approvalWorkflowStep", _module);
|
|
183
181
|
pulumi.runtime.registerResourceModule("sdm", "index/identityAlias", _module);
|
|
184
182
|
pulumi.runtime.registerResourceModule("sdm", "index/identitySet", _module);
|
|
183
|
+
pulumi.runtime.registerResourceModule("sdm", "index/managedSecret", _module);
|
|
185
184
|
pulumi.runtime.registerResourceModule("sdm", "index/node", _module);
|
|
186
185
|
pulumi.runtime.registerResourceModule("sdm", "index/peeringGroup", _module);
|
|
187
186
|
pulumi.runtime.registerResourceModule("sdm", "index/peeringGroupNode", _module);
|
|
@@ -192,6 +191,7 @@ pulumi.runtime.registerResourceModule("sdm", "index/proxyClusterKey", _module);
|
|
|
192
191
|
pulumi.runtime.registerResourceModule("sdm", "index/remoteIdentity", _module);
|
|
193
192
|
pulumi.runtime.registerResourceModule("sdm", "index/resource", _module);
|
|
194
193
|
pulumi.runtime.registerResourceModule("sdm", "index/role", _module);
|
|
194
|
+
pulumi.runtime.registerResourceModule("sdm", "index/secretEngine", _module);
|
|
195
195
|
pulumi.runtime.registerResourceModule("sdm", "index/secretStore", _module);
|
|
196
196
|
pulumi.runtime.registerResourceModule("sdm", "index/workflow", _module);
|
|
197
197
|
pulumi.runtime.registerResourceModule("sdm", "index/workflowApprover", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ManagedSecret contains details about managed secret
|
|
4
|
+
* This resource can be imported using the import command.
|
|
5
|
+
*
|
|
6
|
+
* ## Import
|
|
7
|
+
*
|
|
8
|
+
* A ManagedSecret can be imported using the id, e.g.,
|
|
9
|
+
*
|
|
10
|
+
* ```sh
|
|
11
|
+
* $ pulumi import sdm:index/managedSecret:ManagedSecret example ms-12345678
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare class ManagedSecret extends pulumi.CustomResource {
|
|
15
|
+
/**
|
|
16
|
+
* Get an existing ManagedSecret resource's state with the given name, ID, and optional extra
|
|
17
|
+
* properties used to qualify the lookup.
|
|
18
|
+
*
|
|
19
|
+
* @param name The _unique_ name of the resulting resource.
|
|
20
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
21
|
+
* @param state Any extra arguments used during the lookup.
|
|
22
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
23
|
+
*/
|
|
24
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ManagedSecretState, opts?: pulumi.CustomResourceOptions): ManagedSecret;
|
|
25
|
+
/**
|
|
26
|
+
* Returns true if the given object is an instance of ManagedSecret. This is designed to work even
|
|
27
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
28
|
+
*/
|
|
29
|
+
static isInstance(obj: any): obj is ManagedSecret;
|
|
30
|
+
/**
|
|
31
|
+
* public part of the secret value
|
|
32
|
+
*/
|
|
33
|
+
readonly config: pulumi.Output<string>;
|
|
34
|
+
/**
|
|
35
|
+
* Timestamp of when secret is going to be rotated
|
|
36
|
+
*/
|
|
37
|
+
readonly expiresAt: pulumi.Output<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Timestamp of when secret was last rotated
|
|
40
|
+
*/
|
|
41
|
+
readonly lastRotatedAt: pulumi.Output<string>;
|
|
42
|
+
/**
|
|
43
|
+
* Unique human-readable name of the Managed Secret.
|
|
44
|
+
*/
|
|
45
|
+
readonly name: pulumi.Output<string>;
|
|
46
|
+
/**
|
|
47
|
+
* An ID of a Secret Engine linked with the Managed Secret.
|
|
48
|
+
*/
|
|
49
|
+
readonly secretEngineId: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Path in a secret store.
|
|
52
|
+
*/
|
|
53
|
+
readonly secretStorePath: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Tags is a map of key, value pairs.
|
|
56
|
+
*/
|
|
57
|
+
readonly tags: pulumi.Output<{
|
|
58
|
+
[key: string]: string;
|
|
59
|
+
} | undefined>;
|
|
60
|
+
/**
|
|
61
|
+
* Sensitive value of the secret.
|
|
62
|
+
*/
|
|
63
|
+
readonly value: pulumi.Output<string | undefined>;
|
|
64
|
+
/**
|
|
65
|
+
* Create a ManagedSecret resource with the given unique name, arguments, and options.
|
|
66
|
+
*
|
|
67
|
+
* @param name The _unique_ name of the resource.
|
|
68
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
69
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
70
|
+
*/
|
|
71
|
+
constructor(name: string, args: ManagedSecretArgs, opts?: pulumi.CustomResourceOptions);
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Input properties used for looking up and filtering ManagedSecret resources.
|
|
75
|
+
*/
|
|
76
|
+
export interface ManagedSecretState {
|
|
77
|
+
/**
|
|
78
|
+
* public part of the secret value
|
|
79
|
+
*/
|
|
80
|
+
config?: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Timestamp of when secret is going to be rotated
|
|
83
|
+
*/
|
|
84
|
+
expiresAt?: pulumi.Input<string>;
|
|
85
|
+
/**
|
|
86
|
+
* Timestamp of when secret was last rotated
|
|
87
|
+
*/
|
|
88
|
+
lastRotatedAt?: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* Unique human-readable name of the Managed Secret.
|
|
91
|
+
*/
|
|
92
|
+
name?: pulumi.Input<string>;
|
|
93
|
+
/**
|
|
94
|
+
* An ID of a Secret Engine linked with the Managed Secret.
|
|
95
|
+
*/
|
|
96
|
+
secretEngineId?: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* Path in a secret store.
|
|
99
|
+
*/
|
|
100
|
+
secretStorePath?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* Tags is a map of key, value pairs.
|
|
103
|
+
*/
|
|
104
|
+
tags?: pulumi.Input<{
|
|
105
|
+
[key: string]: pulumi.Input<string>;
|
|
106
|
+
}>;
|
|
107
|
+
/**
|
|
108
|
+
* Sensitive value of the secret.
|
|
109
|
+
*/
|
|
110
|
+
value?: pulumi.Input<string>;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* The set of arguments for constructing a ManagedSecret resource.
|
|
114
|
+
*/
|
|
115
|
+
export interface ManagedSecretArgs {
|
|
116
|
+
/**
|
|
117
|
+
* Unique human-readable name of the Managed Secret.
|
|
118
|
+
*/
|
|
119
|
+
name?: pulumi.Input<string>;
|
|
120
|
+
/**
|
|
121
|
+
* An ID of a Secret Engine linked with the Managed Secret.
|
|
122
|
+
*/
|
|
123
|
+
secretEngineId: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* Tags is a map of key, value pairs.
|
|
126
|
+
*/
|
|
127
|
+
tags?: pulumi.Input<{
|
|
128
|
+
[key: string]: pulumi.Input<string>;
|
|
129
|
+
}>;
|
|
130
|
+
/**
|
|
131
|
+
* Sensitive value of the secret.
|
|
132
|
+
*/
|
|
133
|
+
value?: pulumi.Input<string>;
|
|
134
|
+
}
|
package/managedSecret.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
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.ManagedSecret = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ManagedSecret contains details about managed secret
|
|
10
|
+
* This resource can be imported using the import command.
|
|
11
|
+
*
|
|
12
|
+
* ## Import
|
|
13
|
+
*
|
|
14
|
+
* A ManagedSecret can be imported using the id, e.g.,
|
|
15
|
+
*
|
|
16
|
+
* ```sh
|
|
17
|
+
* $ pulumi import sdm:index/managedSecret:ManagedSecret example ms-12345678
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
class ManagedSecret extends pulumi.CustomResource {
|
|
21
|
+
/**
|
|
22
|
+
* Get an existing ManagedSecret resource's state with the given name, ID, and optional extra
|
|
23
|
+
* properties used to qualify the lookup.
|
|
24
|
+
*
|
|
25
|
+
* @param name The _unique_ name of the resulting resource.
|
|
26
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
27
|
+
* @param state Any extra arguments used during the lookup.
|
|
28
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
29
|
+
*/
|
|
30
|
+
static get(name, id, state, opts) {
|
|
31
|
+
return new ManagedSecret(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Returns true if the given object is an instance of ManagedSecret. This is designed to work even
|
|
35
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
36
|
+
*/
|
|
37
|
+
static isInstance(obj) {
|
|
38
|
+
if (obj === undefined || obj === null) {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
return obj['__pulumiType'] === ManagedSecret.__pulumiType;
|
|
42
|
+
}
|
|
43
|
+
constructor(name, argsOrState, opts) {
|
|
44
|
+
let resourceInputs = {};
|
|
45
|
+
opts = opts || {};
|
|
46
|
+
if (opts.id) {
|
|
47
|
+
const state = argsOrState;
|
|
48
|
+
resourceInputs["config"] = state ? state.config : undefined;
|
|
49
|
+
resourceInputs["expiresAt"] = state ? state.expiresAt : undefined;
|
|
50
|
+
resourceInputs["lastRotatedAt"] = state ? state.lastRotatedAt : undefined;
|
|
51
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
52
|
+
resourceInputs["secretEngineId"] = state ? state.secretEngineId : undefined;
|
|
53
|
+
resourceInputs["secretStorePath"] = state ? state.secretStorePath : undefined;
|
|
54
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
55
|
+
resourceInputs["value"] = state ? state.value : undefined;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
const args = argsOrState;
|
|
59
|
+
if ((!args || args.secretEngineId === undefined) && !opts.urn) {
|
|
60
|
+
throw new Error("Missing required property 'secretEngineId'");
|
|
61
|
+
}
|
|
62
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
63
|
+
resourceInputs["secretEngineId"] = args ? args.secretEngineId : undefined;
|
|
64
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
65
|
+
resourceInputs["value"] = (args === null || args === void 0 ? void 0 : args.value) ? pulumi.secret(args.value) : undefined;
|
|
66
|
+
resourceInputs["config"] = undefined /*out*/;
|
|
67
|
+
resourceInputs["expiresAt"] = undefined /*out*/;
|
|
68
|
+
resourceInputs["lastRotatedAt"] = undefined /*out*/;
|
|
69
|
+
resourceInputs["secretStorePath"] = undefined /*out*/;
|
|
70
|
+
}
|
|
71
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
72
|
+
const secretOpts = { additionalSecretOutputs: ["value"] };
|
|
73
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
74
|
+
super(ManagedSecret.__pulumiType, name, resourceInputs, opts);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.ManagedSecret = ManagedSecret;
|
|
78
|
+
/** @internal */
|
|
79
|
+
ManagedSecret.__pulumiType = 'sdm:index/managedSecret:ManagedSecret';
|
|
80
|
+
//# sourceMappingURL=managedSecret.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"managedSecret.js","sourceRoot":"","sources":["../managedSecret.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/resource.d.ts
CHANGED
|
@@ -39,9 +39,6 @@ export declare class Resource extends pulumi.CustomResource {
|
|
|
39
39
|
readonly amazonEksInstanceProfileUserImpersonation: pulumi.Output<outputs.ResourceAmazonEksInstanceProfileUserImpersonation | undefined>;
|
|
40
40
|
readonly amazonEksUserImpersonation: pulumi.Output<outputs.ResourceAmazonEksUserImpersonation | undefined>;
|
|
41
41
|
readonly amazonEs: pulumi.Output<outputs.ResourceAmazonEs | undefined>;
|
|
42
|
-
/**
|
|
43
|
-
* AmazonESIAM is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
44
|
-
*/
|
|
45
42
|
readonly amazonEsiam: pulumi.Output<outputs.ResourceAmazonEsiam | undefined>;
|
|
46
43
|
readonly amazonmqAmqp091: pulumi.Output<outputs.ResourceAmazonmqAmqp091 | undefined>;
|
|
47
44
|
readonly athena: pulumi.Output<outputs.ResourceAthena | undefined>;
|
|
@@ -128,6 +125,7 @@ export declare class Resource extends pulumi.CustomResource {
|
|
|
128
125
|
readonly rdpCert: pulumi.Output<outputs.ResourceRdpCert | undefined>;
|
|
129
126
|
readonly rdsPostgresIam: pulumi.Output<outputs.ResourceRdsPostgresIam | undefined>;
|
|
130
127
|
readonly redis: pulumi.Output<outputs.ResourceRedis | undefined>;
|
|
128
|
+
readonly redisCluster: pulumi.Output<outputs.ResourceRedisCluster | undefined>;
|
|
131
129
|
readonly redshift: pulumi.Output<outputs.ResourceRedshift | undefined>;
|
|
132
130
|
/**
|
|
133
131
|
* RedshiftIAM is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
@@ -154,6 +152,10 @@ export declare class Resource extends pulumi.CustomResource {
|
|
|
154
152
|
* Trino is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
155
153
|
*/
|
|
156
154
|
readonly trino: pulumi.Output<outputs.ResourceTrino | undefined>;
|
|
155
|
+
/**
|
|
156
|
+
* Vertica is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
157
|
+
*/
|
|
158
|
+
readonly vertica: pulumi.Output<outputs.ResourceVertica | undefined>;
|
|
157
159
|
/**
|
|
158
160
|
* Create a Resource resource with the given unique name, arguments, and options.
|
|
159
161
|
*
|
|
@@ -180,9 +182,6 @@ export interface ResourceState {
|
|
|
180
182
|
amazonEksInstanceProfileUserImpersonation?: pulumi.Input<inputs.ResourceAmazonEksInstanceProfileUserImpersonation>;
|
|
181
183
|
amazonEksUserImpersonation?: pulumi.Input<inputs.ResourceAmazonEksUserImpersonation>;
|
|
182
184
|
amazonEs?: pulumi.Input<inputs.ResourceAmazonEs>;
|
|
183
|
-
/**
|
|
184
|
-
* AmazonESIAM is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
185
|
-
*/
|
|
186
185
|
amazonEsiam?: pulumi.Input<inputs.ResourceAmazonEsiam>;
|
|
187
186
|
amazonmqAmqp091?: pulumi.Input<inputs.ResourceAmazonmqAmqp091>;
|
|
188
187
|
athena?: pulumi.Input<inputs.ResourceAthena>;
|
|
@@ -269,6 +268,7 @@ export interface ResourceState {
|
|
|
269
268
|
rdpCert?: pulumi.Input<inputs.ResourceRdpCert>;
|
|
270
269
|
rdsPostgresIam?: pulumi.Input<inputs.ResourceRdsPostgresIam>;
|
|
271
270
|
redis?: pulumi.Input<inputs.ResourceRedis>;
|
|
271
|
+
redisCluster?: pulumi.Input<inputs.ResourceRedisCluster>;
|
|
272
272
|
redshift?: pulumi.Input<inputs.ResourceRedshift>;
|
|
273
273
|
/**
|
|
274
274
|
* RedshiftIAM is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
@@ -295,6 +295,10 @@ export interface ResourceState {
|
|
|
295
295
|
* Trino is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
296
296
|
*/
|
|
297
297
|
trino?: pulumi.Input<inputs.ResourceTrino>;
|
|
298
|
+
/**
|
|
299
|
+
* Vertica is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
300
|
+
*/
|
|
301
|
+
vertica?: pulumi.Input<inputs.ResourceVertica>;
|
|
298
302
|
}
|
|
299
303
|
/**
|
|
300
304
|
* The set of arguments for constructing a Resource resource.
|
|
@@ -313,9 +317,6 @@ export interface ResourceArgs {
|
|
|
313
317
|
amazonEksInstanceProfileUserImpersonation?: pulumi.Input<inputs.ResourceAmazonEksInstanceProfileUserImpersonation>;
|
|
314
318
|
amazonEksUserImpersonation?: pulumi.Input<inputs.ResourceAmazonEksUserImpersonation>;
|
|
315
319
|
amazonEs?: pulumi.Input<inputs.ResourceAmazonEs>;
|
|
316
|
-
/**
|
|
317
|
-
* AmazonESIAM is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
318
|
-
*/
|
|
319
320
|
amazonEsiam?: pulumi.Input<inputs.ResourceAmazonEsiam>;
|
|
320
321
|
amazonmqAmqp091?: pulumi.Input<inputs.ResourceAmazonmqAmqp091>;
|
|
321
322
|
athena?: pulumi.Input<inputs.ResourceAthena>;
|
|
@@ -402,6 +403,7 @@ export interface ResourceArgs {
|
|
|
402
403
|
rdpCert?: pulumi.Input<inputs.ResourceRdpCert>;
|
|
403
404
|
rdsPostgresIam?: pulumi.Input<inputs.ResourceRdsPostgresIam>;
|
|
404
405
|
redis?: pulumi.Input<inputs.ResourceRedis>;
|
|
406
|
+
redisCluster?: pulumi.Input<inputs.ResourceRedisCluster>;
|
|
405
407
|
redshift?: pulumi.Input<inputs.ResourceRedshift>;
|
|
406
408
|
/**
|
|
407
409
|
* RedshiftIAM is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
@@ -428,4 +430,8 @@ export interface ResourceArgs {
|
|
|
428
430
|
* Trino is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
429
431
|
*/
|
|
430
432
|
trino?: pulumi.Input<inputs.ResourceTrino>;
|
|
433
|
+
/**
|
|
434
|
+
* Vertica is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
435
|
+
*/
|
|
436
|
+
vertica?: pulumi.Input<inputs.ResourceVertica>;
|
|
431
437
|
}
|
package/resource.js
CHANGED
|
@@ -126,6 +126,7 @@ class Resource extends pulumi.CustomResource {
|
|
|
126
126
|
resourceInputs["rdpCert"] = state ? state.rdpCert : undefined;
|
|
127
127
|
resourceInputs["rdsPostgresIam"] = state ? state.rdsPostgresIam : undefined;
|
|
128
128
|
resourceInputs["redis"] = state ? state.redis : undefined;
|
|
129
|
+
resourceInputs["redisCluster"] = state ? state.redisCluster : undefined;
|
|
129
130
|
resourceInputs["redshift"] = state ? state.redshift : undefined;
|
|
130
131
|
resourceInputs["redshiftIam"] = state ? state.redshiftIam : undefined;
|
|
131
132
|
resourceInputs["redshiftServerlessIam"] = state ? state.redshiftServerlessIam : undefined;
|
|
@@ -143,6 +144,7 @@ class Resource extends pulumi.CustomResource {
|
|
|
143
144
|
resourceInputs["sybaseIq"] = state ? state.sybaseIq : undefined;
|
|
144
145
|
resourceInputs["teradata"] = state ? state.teradata : undefined;
|
|
145
146
|
resourceInputs["trino"] = state ? state.trino : undefined;
|
|
147
|
+
resourceInputs["vertica"] = state ? state.vertica : undefined;
|
|
146
148
|
}
|
|
147
149
|
else {
|
|
148
150
|
const args = argsOrState;
|
|
@@ -230,6 +232,7 @@ class Resource extends pulumi.CustomResource {
|
|
|
230
232
|
resourceInputs["rdpCert"] = args ? args.rdpCert : undefined;
|
|
231
233
|
resourceInputs["rdsPostgresIam"] = args ? args.rdsPostgresIam : undefined;
|
|
232
234
|
resourceInputs["redis"] = args ? args.redis : undefined;
|
|
235
|
+
resourceInputs["redisCluster"] = args ? args.redisCluster : undefined;
|
|
233
236
|
resourceInputs["redshift"] = args ? args.redshift : undefined;
|
|
234
237
|
resourceInputs["redshiftIam"] = args ? args.redshiftIam : undefined;
|
|
235
238
|
resourceInputs["redshiftServerlessIam"] = args ? args.redshiftServerlessIam : undefined;
|
|
@@ -247,6 +250,7 @@ class Resource extends pulumi.CustomResource {
|
|
|
247
250
|
resourceInputs["sybaseIq"] = args ? args.sybaseIq : undefined;
|
|
248
251
|
resourceInputs["teradata"] = args ? args.teradata : undefined;
|
|
249
252
|
resourceInputs["trino"] = args ? args.trino : undefined;
|
|
253
|
+
resourceInputs["vertica"] = args ? args.vertica : undefined;
|
|
250
254
|
}
|
|
251
255
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
252
256
|
super(Resource.__pulumiType, name, resourceInputs, opts);
|