@pierskarsenbarg/sdm 1.0.1 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/account.d.ts +2 -1
- package/account.js.map +1 -1
- package/getAccount.d.ts +23 -3
- package/getAccount.js +24 -7
- package/getAccount.js.map +1 -1
- package/getAccountAttachment.d.ts +16 -3
- package/getAccountAttachment.js +17 -7
- package/getAccountAttachment.js.map +1 -1
- package/getNode.d.ts +23 -3
- package/getNode.js +24 -7
- package/getNode.js.map +1 -1
- package/getRemoteIdentity.d.ts +18 -3
- package/getRemoteIdentity.js +19 -7
- package/getRemoteIdentity.js.map +1 -1
- package/getRemoteIdentityGroup.d.ts +16 -3
- package/getRemoteIdentityGroup.js +17 -7
- package/getRemoteIdentityGroup.js.map +1 -1
- package/getResource.d.ts +22 -3
- package/getResource.js +23 -7
- package/getResource.js.map +1 -1
- package/getRole.d.ts +6 -15
- package/getRole.js +7 -19
- package/getRole.js.map +1 -1
- package/getSecretStore.d.ts +5 -1
- package/getSecretStore.js +6 -5
- package/getSecretStore.js.map +1 -1
- package/getSshCaPubkey.d.ts +12 -1
- package/getSshCaPubkey.js +14 -6
- package/getSshCaPubkey.js.map +1 -1
- package/index.d.ts +51 -17
- package/index.js +52 -50
- package/index.js.map +1 -1
- package/node.d.ts +2 -1
- package/node.js.map +1 -1
- package/package.json +2 -2
- package/resource.d.ts +14 -10
- package/resource.js +2 -0
- package/resource.js.map +1 -1
- package/secretStore.d.ts +2 -1
- package/secretStore.js.map +1 -1
- package/types/index.js.map +1 -1
- package/types/input.d.ts +192 -1
- package/types/output.d.ts +252 -2
- package/utilities.js +13 -1
- package/utilities.js.map +1 -1
package/getRole.d.ts
CHANGED
|
@@ -1,23 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
4
|
* A Role has a list of access rules which determine which Resources the members
|
|
5
5
|
* of the Role have access to. An Account can be a member of multiple Roles via
|
|
6
6
|
* AccountAttachments.
|
|
7
|
-
* ## Example Usage
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
-
* import * as sdm from "@pulumi/sdm";
|
|
12
|
-
*
|
|
13
|
-
* const compositeRoleQuery = pulumi.output(sdm.getRole({
|
|
14
|
-
* composite: true,
|
|
15
|
-
* tags: {
|
|
16
|
-
* env: "dev",
|
|
17
|
-
* region: "us-west",
|
|
18
|
-
* },
|
|
19
|
-
* }));
|
|
20
|
-
* ```
|
|
21
7
|
*/
|
|
22
8
|
export declare function getRole(args?: GetRoleArgs, opts?: pulumi.InvokeOptions): Promise<GetRoleResult>;
|
|
23
9
|
/**
|
|
@@ -70,6 +56,11 @@ export interface GetRoleResult {
|
|
|
70
56
|
[key: string]: string;
|
|
71
57
|
};
|
|
72
58
|
}
|
|
59
|
+
/**
|
|
60
|
+
* A Role has a list of access rules which determine which Resources the members
|
|
61
|
+
* of the Role have access to. An Account can be a member of multiple Roles via
|
|
62
|
+
* AccountAttachments.
|
|
63
|
+
*/
|
|
73
64
|
export declare function getRoleOutput(args?: GetRoleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRoleResult>;
|
|
74
65
|
/**
|
|
75
66
|
* A collection of arguments for invoking getRole.
|
package/getRole.js
CHANGED
|
@@ -9,27 +9,10 @@ const utilities = require("./utilities");
|
|
|
9
9
|
* A Role has a list of access rules which determine which Resources the members
|
|
10
10
|
* of the Role have access to. An Account can be a member of multiple Roles via
|
|
11
11
|
* AccountAttachments.
|
|
12
|
-
* ## Example Usage
|
|
13
|
-
*
|
|
14
|
-
* ```typescript
|
|
15
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
-
* import * as sdm from "@pulumi/sdm";
|
|
17
|
-
*
|
|
18
|
-
* const compositeRoleQuery = pulumi.output(sdm.getRole({
|
|
19
|
-
* composite: true,
|
|
20
|
-
* tags: {
|
|
21
|
-
* env: "dev",
|
|
22
|
-
* region: "us-west",
|
|
23
|
-
* },
|
|
24
|
-
* }));
|
|
25
|
-
* ```
|
|
26
12
|
*/
|
|
27
13
|
function getRole(args, opts) {
|
|
28
14
|
args = args || {};
|
|
29
|
-
|
|
30
|
-
opts = {};
|
|
31
|
-
}
|
|
32
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
15
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
33
16
|
return pulumi.runtime.invoke("sdm:index/getRole:getRole", {
|
|
34
17
|
"id": args.id,
|
|
35
18
|
"name": args.name,
|
|
@@ -37,8 +20,13 @@ function getRole(args, opts) {
|
|
|
37
20
|
}, opts);
|
|
38
21
|
}
|
|
39
22
|
exports.getRole = getRole;
|
|
23
|
+
/**
|
|
24
|
+
* A Role has a list of access rules which determine which Resources the members
|
|
25
|
+
* of the Role have access to. An Account can be a member of multiple Roles via
|
|
26
|
+
* AccountAttachments.
|
|
27
|
+
*/
|
|
40
28
|
function getRoleOutput(args, opts) {
|
|
41
|
-
return pulumi.output(args).apply(a => getRole(a, opts));
|
|
29
|
+
return pulumi.output(args).apply((a) => getRole(a, opts));
|
|
42
30
|
}
|
|
43
31
|
exports.getRoleOutput = getRoleOutput;
|
|
44
32
|
//# sourceMappingURL=getRole.js.map
|
package/getRole.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,EAAE;QACtD,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0BASC;AAiDD;;;;GAIG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|
package/getSecretStore.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
4
|
* A SecretStore is a server where resource secrets (passwords, keys) are stored.
|
|
5
5
|
* Coming soon support for HashiCorp Vault and AWS Secret Store.
|
|
@@ -57,6 +57,10 @@ export interface GetSecretStoreResult {
|
|
|
57
57
|
};
|
|
58
58
|
readonly type?: string;
|
|
59
59
|
}
|
|
60
|
+
/**
|
|
61
|
+
* A SecretStore is a server where resource secrets (passwords, keys) are stored.
|
|
62
|
+
* Coming soon support for HashiCorp Vault and AWS Secret Store.
|
|
63
|
+
*/
|
|
60
64
|
export declare function getSecretStoreOutput(args?: GetSecretStoreOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSecretStoreResult>;
|
|
61
65
|
/**
|
|
62
66
|
* A collection of arguments for invoking getSecretStore.
|
package/getSecretStore.js
CHANGED
|
@@ -11,10 +11,7 @@ const utilities = require("./utilities");
|
|
|
11
11
|
*/
|
|
12
12
|
function getSecretStore(args, opts) {
|
|
13
13
|
args = args || {};
|
|
14
|
-
|
|
15
|
-
opts = {};
|
|
16
|
-
}
|
|
17
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
14
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
18
15
|
return pulumi.runtime.invoke("sdm:index/getSecretStore:getSecretStore", {
|
|
19
16
|
"id": args.id,
|
|
20
17
|
"name": args.name,
|
|
@@ -23,8 +20,12 @@ function getSecretStore(args, opts) {
|
|
|
23
20
|
}, opts);
|
|
24
21
|
}
|
|
25
22
|
exports.getSecretStore = getSecretStore;
|
|
23
|
+
/**
|
|
24
|
+
* A SecretStore is a server where resource secrets (passwords, keys) are stored.
|
|
25
|
+
* Coming soon support for HashiCorp Vault and AWS Secret Store.
|
|
26
|
+
*/
|
|
26
27
|
function getSecretStoreOutput(args, opts) {
|
|
27
|
-
return pulumi.output(args).apply(a => getSecretStore(a, opts));
|
|
28
|
+
return pulumi.output(args).apply((a) => getSecretStore(a, opts));
|
|
28
29
|
}
|
|
29
30
|
exports.getSecretStoreOutput = getSecretStoreOutput;
|
|
30
31
|
//# sourceMappingURL=getSecretStore.js.map
|
package/getSecretStore.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSecretStore.js","sourceRoot":"","sources":["../getSecretStore.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getSecretStore.js","sourceRoot":"","sources":["../getSecretStore.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;GAGG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,wCAUC;AAmDD;;;GAGG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/getSshCaPubkey.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
7
7
|
* import * as pulumi from "@pulumi/pulumi";
|
|
8
8
|
* import * as sdm from "@pulumi/sdm";
|
|
9
9
|
*
|
|
10
|
-
* const sshPubkeyQuery =
|
|
10
|
+
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
11
11
|
* ```
|
|
12
12
|
*/
|
|
13
13
|
export declare function getSshCaPubkey(args?: GetSshCaPubkeyArgs, opts?: pulumi.InvokeOptions): Promise<GetSshCaPubkeyResult>;
|
|
@@ -37,6 +37,17 @@ export interface GetSshCaPubkeyResult {
|
|
|
37
37
|
*/
|
|
38
38
|
readonly publicKey?: string;
|
|
39
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* The SSH CA Pubkey is a public key used for setting up SSH resources.
|
|
42
|
+
* ## Example Usage
|
|
43
|
+
*
|
|
44
|
+
* ```typescript
|
|
45
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
+
* import * as sdm from "@pulumi/sdm";
|
|
47
|
+
*
|
|
48
|
+
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
40
51
|
export declare function getSshCaPubkeyOutput(args?: GetSshCaPubkeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSshCaPubkeyResult>;
|
|
41
52
|
/**
|
|
42
53
|
* A collection of arguments for invoking getSshCaPubkey.
|
package/getSshCaPubkey.js
CHANGED
|
@@ -13,23 +13,31 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
14
14
|
* import * as sdm from "@pulumi/sdm";
|
|
15
15
|
*
|
|
16
|
-
* const sshPubkeyQuery =
|
|
16
|
+
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
17
17
|
* ```
|
|
18
18
|
*/
|
|
19
19
|
function getSshCaPubkey(args, opts) {
|
|
20
20
|
args = args || {};
|
|
21
|
-
|
|
22
|
-
opts = {};
|
|
23
|
-
}
|
|
24
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
21
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
22
|
return pulumi.runtime.invoke("sdm:index/getSshCaPubkey:getSshCaPubkey", {
|
|
26
23
|
"id": args.id,
|
|
27
24
|
"publicKey": args.publicKey,
|
|
28
25
|
}, opts);
|
|
29
26
|
}
|
|
30
27
|
exports.getSshCaPubkey = getSshCaPubkey;
|
|
28
|
+
/**
|
|
29
|
+
* The SSH CA Pubkey is a public key used for setting up SSH resources.
|
|
30
|
+
* ## Example Usage
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as sdm from "@pulumi/sdm";
|
|
35
|
+
*
|
|
36
|
+
* const sshPubkeyQuery = sdm.getSshCaPubkey({});
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
31
39
|
function getSshCaPubkeyOutput(args, opts) {
|
|
32
|
-
return pulumi.output(args).apply(a => getSshCaPubkey(a, opts));
|
|
40
|
+
return pulumi.output(args).apply((a) => getSshCaPubkey(a, opts));
|
|
33
41
|
}
|
|
34
42
|
exports.getSshCaPubkeyOutput = getSshCaPubkeyOutput;
|
|
35
43
|
//# sourceMappingURL=getSshCaPubkey.js.map
|
package/getSshCaPubkey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSshCaPubkey.js","sourceRoot":"","sources":["../getSshCaPubkey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getSshCaPubkey.js","sourceRoot":"","sources":["../getSshCaPubkey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;AA6BD;;;;;;;;;;GAUG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|
package/index.d.ts
CHANGED
|
@@ -1,20 +1,54 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
1
|
+
export { AccountArgs, AccountState } from "./account";
|
|
2
|
+
export type Account = import("./account").Account;
|
|
3
|
+
export declare const Account: typeof import("./account").Account;
|
|
4
|
+
export { AccountAttachmentArgs, AccountAttachmentState } from "./accountAttachment";
|
|
5
|
+
export type AccountAttachment = import("./accountAttachment").AccountAttachment;
|
|
6
|
+
export declare const AccountAttachment: typeof import("./accountAttachment").AccountAttachment;
|
|
7
|
+
export { GetAccountArgs, GetAccountResult, GetAccountOutputArgs } from "./getAccount";
|
|
8
|
+
export declare const getAccount: typeof import("./getAccount").getAccount;
|
|
9
|
+
export declare const getAccountOutput: typeof import("./getAccount").getAccountOutput;
|
|
10
|
+
export { GetAccountAttachmentArgs, GetAccountAttachmentResult, GetAccountAttachmentOutputArgs } from "./getAccountAttachment";
|
|
11
|
+
export declare const getAccountAttachment: typeof import("./getAccountAttachment").getAccountAttachment;
|
|
12
|
+
export declare const getAccountAttachmentOutput: typeof import("./getAccountAttachment").getAccountAttachmentOutput;
|
|
13
|
+
export { GetNodeArgs, GetNodeResult, GetNodeOutputArgs } from "./getNode";
|
|
14
|
+
export declare const getNode: typeof import("./getNode").getNode;
|
|
15
|
+
export declare const getNodeOutput: typeof import("./getNode").getNodeOutput;
|
|
16
|
+
export { GetRemoteIdentityArgs, GetRemoteIdentityResult, GetRemoteIdentityOutputArgs } from "./getRemoteIdentity";
|
|
17
|
+
export declare const getRemoteIdentity: typeof import("./getRemoteIdentity").getRemoteIdentity;
|
|
18
|
+
export declare const getRemoteIdentityOutput: typeof import("./getRemoteIdentity").getRemoteIdentityOutput;
|
|
19
|
+
export { GetRemoteIdentityGroupArgs, GetRemoteIdentityGroupResult, GetRemoteIdentityGroupOutputArgs } from "./getRemoteIdentityGroup";
|
|
20
|
+
export declare const getRemoteIdentityGroup: typeof import("./getRemoteIdentityGroup").getRemoteIdentityGroup;
|
|
21
|
+
export declare const getRemoteIdentityGroupOutput: typeof import("./getRemoteIdentityGroup").getRemoteIdentityGroupOutput;
|
|
22
|
+
export { GetResourceArgs, GetResourceResult, GetResourceOutputArgs } from "./getResource";
|
|
23
|
+
export declare const getResource: typeof import("./getResource").getResource;
|
|
24
|
+
export declare const getResourceOutput: typeof import("./getResource").getResourceOutput;
|
|
25
|
+
export { GetRoleArgs, GetRoleResult, GetRoleOutputArgs } from "./getRole";
|
|
26
|
+
export declare const getRole: typeof import("./getRole").getRole;
|
|
27
|
+
export declare const getRoleOutput: typeof import("./getRole").getRoleOutput;
|
|
28
|
+
export { GetSecretStoreArgs, GetSecretStoreResult, GetSecretStoreOutputArgs } from "./getSecretStore";
|
|
29
|
+
export declare const getSecretStore: typeof import("./getSecretStore").getSecretStore;
|
|
30
|
+
export declare const getSecretStoreOutput: typeof import("./getSecretStore").getSecretStoreOutput;
|
|
31
|
+
export { GetSshCaPubkeyArgs, GetSshCaPubkeyResult, GetSshCaPubkeyOutputArgs } from "./getSshCaPubkey";
|
|
32
|
+
export declare const getSshCaPubkey: typeof import("./getSshCaPubkey").getSshCaPubkey;
|
|
33
|
+
export declare const getSshCaPubkeyOutput: typeof import("./getSshCaPubkey").getSshCaPubkeyOutput;
|
|
34
|
+
export { NodeArgs, NodeState } from "./node";
|
|
35
|
+
export type Node = import("./node").Node;
|
|
36
|
+
export declare const Node: typeof import("./node").Node;
|
|
37
|
+
export { ProviderArgs } from "./provider";
|
|
38
|
+
export type Provider = import("./provider").Provider;
|
|
39
|
+
export declare const Provider: typeof import("./provider").Provider;
|
|
40
|
+
export { RemoteIdentityArgs, RemoteIdentityState } from "./remoteIdentity";
|
|
41
|
+
export type RemoteIdentity = import("./remoteIdentity").RemoteIdentity;
|
|
42
|
+
export declare const RemoteIdentity: typeof import("./remoteIdentity").RemoteIdentity;
|
|
43
|
+
export { ResourceArgs, ResourceState } from "./resource";
|
|
44
|
+
export type Resource = import("./resource").Resource;
|
|
45
|
+
export declare const Resource: typeof import("./resource").Resource;
|
|
46
|
+
export { RoleArgs, RoleState } from "./role";
|
|
47
|
+
export type Role = import("./role").Role;
|
|
48
|
+
export declare const Role: typeof import("./role").Role;
|
|
49
|
+
export { SecretStoreArgs, SecretStoreState } from "./secretStore";
|
|
50
|
+
export type SecretStore = import("./secretStore").SecretStore;
|
|
51
|
+
export declare const SecretStore: typeof import("./secretStore").SecretStore;
|
|
18
52
|
import * as config from "./config";
|
|
19
53
|
import * as types from "./types";
|
|
20
54
|
export { config, types, };
|
package/index.js
CHANGED
|
@@ -1,73 +1,76 @@
|
|
|
1
1
|
"use strict";
|
|
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
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
-
if (k2 === undefined) k2 = k;
|
|
6
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
-
}
|
|
10
|
-
Object.defineProperty(o, k2, desc);
|
|
11
|
-
}) : (function(o, m, k, k2) {
|
|
12
|
-
if (k2 === undefined) k2 = k;
|
|
13
|
-
o[k2] = m[k];
|
|
14
|
-
}));
|
|
15
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
-
};
|
|
18
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.types = exports.config = void 0;
|
|
5
|
+
exports.types = exports.config = exports.SecretStore = exports.Role = exports.Resource = exports.RemoteIdentity = exports.Provider = exports.Node = 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.getNodeOutput = exports.getNode = exports.getAccountAttachmentOutput = exports.getAccountAttachment = exports.getAccountOutput = exports.getAccount = exports.AccountAttachment = exports.Account = void 0;
|
|
20
6
|
const pulumi = require("@pulumi/pulumi");
|
|
21
7
|
const utilities = require("./utilities");
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
8
|
+
exports.Account = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["Account"], () => require("./account"));
|
|
10
|
+
exports.AccountAttachment = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["AccountAttachment"], () => require("./accountAttachment"));
|
|
12
|
+
exports.getAccount = null;
|
|
13
|
+
exports.getAccountOutput = null;
|
|
14
|
+
utilities.lazyLoad(exports, ["getAccount", "getAccountOutput"], () => require("./getAccount"));
|
|
15
|
+
exports.getAccountAttachment = null;
|
|
16
|
+
exports.getAccountAttachmentOutput = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["getAccountAttachment", "getAccountAttachmentOutput"], () => require("./getAccountAttachment"));
|
|
18
|
+
exports.getNode = null;
|
|
19
|
+
exports.getNodeOutput = null;
|
|
20
|
+
utilities.lazyLoad(exports, ["getNode", "getNodeOutput"], () => require("./getNode"));
|
|
21
|
+
exports.getRemoteIdentity = null;
|
|
22
|
+
exports.getRemoteIdentityOutput = null;
|
|
23
|
+
utilities.lazyLoad(exports, ["getRemoteIdentity", "getRemoteIdentityOutput"], () => require("./getRemoteIdentity"));
|
|
24
|
+
exports.getRemoteIdentityGroup = null;
|
|
25
|
+
exports.getRemoteIdentityGroupOutput = null;
|
|
26
|
+
utilities.lazyLoad(exports, ["getRemoteIdentityGroup", "getRemoteIdentityGroupOutput"], () => require("./getRemoteIdentityGroup"));
|
|
27
|
+
exports.getResource = null;
|
|
28
|
+
exports.getResourceOutput = null;
|
|
29
|
+
utilities.lazyLoad(exports, ["getResource", "getResourceOutput"], () => require("./getResource"));
|
|
30
|
+
exports.getRole = null;
|
|
31
|
+
exports.getRoleOutput = null;
|
|
32
|
+
utilities.lazyLoad(exports, ["getRole", "getRoleOutput"], () => require("./getRole"));
|
|
33
|
+
exports.getSecretStore = null;
|
|
34
|
+
exports.getSecretStoreOutput = null;
|
|
35
|
+
utilities.lazyLoad(exports, ["getSecretStore", "getSecretStoreOutput"], () => require("./getSecretStore"));
|
|
36
|
+
exports.getSshCaPubkey = null;
|
|
37
|
+
exports.getSshCaPubkeyOutput = null;
|
|
38
|
+
utilities.lazyLoad(exports, ["getSshCaPubkey", "getSshCaPubkeyOutput"], () => require("./getSshCaPubkey"));
|
|
39
|
+
exports.Node = null;
|
|
40
|
+
utilities.lazyLoad(exports, ["Node"], () => require("./node"));
|
|
41
|
+
exports.Provider = null;
|
|
42
|
+
utilities.lazyLoad(exports, ["Provider"], () => require("./provider"));
|
|
43
|
+
exports.RemoteIdentity = null;
|
|
44
|
+
utilities.lazyLoad(exports, ["RemoteIdentity"], () => require("./remoteIdentity"));
|
|
45
|
+
exports.Resource = null;
|
|
46
|
+
utilities.lazyLoad(exports, ["Resource"], () => require("./resource"));
|
|
47
|
+
exports.Role = null;
|
|
48
|
+
utilities.lazyLoad(exports, ["Role"], () => require("./role"));
|
|
49
|
+
exports.SecretStore = null;
|
|
50
|
+
utilities.lazyLoad(exports, ["SecretStore"], () => require("./secretStore"));
|
|
40
51
|
// Export sub-modules:
|
|
41
52
|
const config = require("./config");
|
|
42
53
|
exports.config = config;
|
|
43
54
|
const types = require("./types");
|
|
44
55
|
exports.types = types;
|
|
45
|
-
// Import resources to register:
|
|
46
|
-
const account_1 = require("./account");
|
|
47
|
-
const accountAttachment_1 = require("./accountAttachment");
|
|
48
|
-
const node_1 = require("./node");
|
|
49
|
-
const remoteIdentity_1 = require("./remoteIdentity");
|
|
50
|
-
const resource_1 = require("./resource");
|
|
51
|
-
const role_1 = require("./role");
|
|
52
|
-
const secretStore_1 = require("./secretStore");
|
|
53
56
|
const _module = {
|
|
54
57
|
version: utilities.getVersion(),
|
|
55
58
|
construct: (name, type, urn) => {
|
|
56
59
|
switch (type) {
|
|
57
60
|
case "sdm:index/account:Account":
|
|
58
|
-
return new
|
|
61
|
+
return new exports.Account(name, undefined, { urn });
|
|
59
62
|
case "sdm:index/accountAttachment:AccountAttachment":
|
|
60
|
-
return new
|
|
63
|
+
return new exports.AccountAttachment(name, undefined, { urn });
|
|
61
64
|
case "sdm:index/node:Node":
|
|
62
|
-
return new
|
|
65
|
+
return new exports.Node(name, undefined, { urn });
|
|
63
66
|
case "sdm:index/remoteIdentity:RemoteIdentity":
|
|
64
|
-
return new
|
|
67
|
+
return new exports.RemoteIdentity(name, undefined, { urn });
|
|
65
68
|
case "sdm:index/resource:Resource":
|
|
66
|
-
return new
|
|
69
|
+
return new exports.Resource(name, undefined, { urn });
|
|
67
70
|
case "sdm:index/role:Role":
|
|
68
|
-
return new
|
|
71
|
+
return new exports.Role(name, undefined, { urn });
|
|
69
72
|
case "sdm:index/secretStore:SecretStore":
|
|
70
|
-
return new
|
|
73
|
+
return new exports.SecretStore(name, undefined, { urn });
|
|
71
74
|
default:
|
|
72
75
|
throw new Error(`unknown resource type ${type}`);
|
|
73
76
|
}
|
|
@@ -80,14 +83,13 @@ pulumi.runtime.registerResourceModule("sdm", "index/remoteIdentity", _module);
|
|
|
80
83
|
pulumi.runtime.registerResourceModule("sdm", "index/resource", _module);
|
|
81
84
|
pulumi.runtime.registerResourceModule("sdm", "index/role", _module);
|
|
82
85
|
pulumi.runtime.registerResourceModule("sdm", "index/secretStore", _module);
|
|
83
|
-
const provider_1 = require("./provider");
|
|
84
86
|
pulumi.runtime.registerResourcePackage("sdm", {
|
|
85
87
|
version: utilities.getVersion(),
|
|
86
88
|
constructProvider: (name, type, urn) => {
|
|
87
89
|
if (type !== "pulumi:providers:sdm") {
|
|
88
90
|
throw new Error(`unknown provider type ${type}`);
|
|
89
91
|
}
|
|
90
|
-
return new
|
|
92
|
+
return new exports.Provider(name, undefined, { urn });
|
|
91
93
|
},
|
|
92
94
|
});
|
|
93
95
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/node.d.ts
CHANGED
package/node.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.js","sourceRoot":"","sources":["../node.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"node.js","sourceRoot":"","sources":["../node.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;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,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,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;IAmBD,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,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;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;;AA3DL,oBA4DC;AA9CG,gBAAgB;AACO,iBAAY,GAAG,qBAAqB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pierskarsenbarg/sdm",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.1.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing StrongDM cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource sdm v1.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource sdm v1.1.1"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/resource.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
3
4
|
/**
|
|
4
5
|
* ## Import
|
|
5
6
|
*
|
|
@@ -51,9 +52,6 @@ export declare class Resource extends pulumi.CustomResource {
|
|
|
51
52
|
readonly awsConsoleStaticKeyPair: pulumi.Output<outputs.ResourceAwsConsoleStaticKeyPair | undefined>;
|
|
52
53
|
readonly azure: pulumi.Output<outputs.ResourceAzure | undefined>;
|
|
53
54
|
readonly azureCertificate: pulumi.Output<outputs.ResourceAzureCertificate | undefined>;
|
|
54
|
-
/**
|
|
55
|
-
* AzureMysql is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
56
|
-
*/
|
|
57
55
|
readonly azureMysql: pulumi.Output<outputs.ResourceAzureMysql | undefined>;
|
|
58
56
|
readonly azurePostgres: pulumi.Output<outputs.ResourceAzurePostgres | undefined>;
|
|
59
57
|
readonly bigQuery: pulumi.Output<outputs.ResourceBigQuery | undefined>;
|
|
@@ -127,6 +125,10 @@ export declare class Resource extends pulumi.CustomResource {
|
|
|
127
125
|
readonly sybase: pulumi.Output<outputs.ResourceSybase | undefined>;
|
|
128
126
|
readonly sybaseIq: pulumi.Output<outputs.ResourceSybaseIq | undefined>;
|
|
129
127
|
readonly teradata: pulumi.Output<outputs.ResourceTeradata | undefined>;
|
|
128
|
+
/**
|
|
129
|
+
* Trino is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
130
|
+
*/
|
|
131
|
+
readonly trino: pulumi.Output<outputs.ResourceTrino | undefined>;
|
|
130
132
|
/**
|
|
131
133
|
* Create a Resource resource with the given unique name, arguments, and options.
|
|
132
134
|
*
|
|
@@ -166,9 +168,6 @@ export interface ResourceState {
|
|
|
166
168
|
awsConsoleStaticKeyPair?: pulumi.Input<inputs.ResourceAwsConsoleStaticKeyPair>;
|
|
167
169
|
azure?: pulumi.Input<inputs.ResourceAzure>;
|
|
168
170
|
azureCertificate?: pulumi.Input<inputs.ResourceAzureCertificate>;
|
|
169
|
-
/**
|
|
170
|
-
* AzureMysql is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
171
|
-
*/
|
|
172
171
|
azureMysql?: pulumi.Input<inputs.ResourceAzureMysql>;
|
|
173
172
|
azurePostgres?: pulumi.Input<inputs.ResourceAzurePostgres>;
|
|
174
173
|
bigQuery?: pulumi.Input<inputs.ResourceBigQuery>;
|
|
@@ -242,6 +241,10 @@ export interface ResourceState {
|
|
|
242
241
|
sybase?: pulumi.Input<inputs.ResourceSybase>;
|
|
243
242
|
sybaseIq?: pulumi.Input<inputs.ResourceSybaseIq>;
|
|
244
243
|
teradata?: pulumi.Input<inputs.ResourceTeradata>;
|
|
244
|
+
/**
|
|
245
|
+
* Trino is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
246
|
+
*/
|
|
247
|
+
trino?: pulumi.Input<inputs.ResourceTrino>;
|
|
245
248
|
}
|
|
246
249
|
/**
|
|
247
250
|
* The set of arguments for constructing a Resource resource.
|
|
@@ -273,9 +276,6 @@ export interface ResourceArgs {
|
|
|
273
276
|
awsConsoleStaticKeyPair?: pulumi.Input<inputs.ResourceAwsConsoleStaticKeyPair>;
|
|
274
277
|
azure?: pulumi.Input<inputs.ResourceAzure>;
|
|
275
278
|
azureCertificate?: pulumi.Input<inputs.ResourceAzureCertificate>;
|
|
276
|
-
/**
|
|
277
|
-
* AzureMysql is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
278
|
-
*/
|
|
279
279
|
azureMysql?: pulumi.Input<inputs.ResourceAzureMysql>;
|
|
280
280
|
azurePostgres?: pulumi.Input<inputs.ResourceAzurePostgres>;
|
|
281
281
|
bigQuery?: pulumi.Input<inputs.ResourceBigQuery>;
|
|
@@ -349,4 +349,8 @@ export interface ResourceArgs {
|
|
|
349
349
|
sybase?: pulumi.Input<inputs.ResourceSybase>;
|
|
350
350
|
sybaseIq?: pulumi.Input<inputs.ResourceSybaseIq>;
|
|
351
351
|
teradata?: pulumi.Input<inputs.ResourceTeradata>;
|
|
352
|
+
/**
|
|
353
|
+
* Trino is currently unstable, and its API may change, or it may be removed, without a major version bump.
|
|
354
|
+
*/
|
|
355
|
+
trino?: pulumi.Input<inputs.ResourceTrino>;
|
|
352
356
|
}
|
package/resource.js
CHANGED
|
@@ -119,6 +119,7 @@ class Resource extends pulumi.CustomResource {
|
|
|
119
119
|
resourceInputs["sybase"] = state ? state.sybase : undefined;
|
|
120
120
|
resourceInputs["sybaseIq"] = state ? state.sybaseIq : undefined;
|
|
121
121
|
resourceInputs["teradata"] = state ? state.teradata : undefined;
|
|
122
|
+
resourceInputs["trino"] = state ? state.trino : undefined;
|
|
122
123
|
}
|
|
123
124
|
else {
|
|
124
125
|
const args = argsOrState;
|
|
@@ -199,6 +200,7 @@ class Resource extends pulumi.CustomResource {
|
|
|
199
200
|
resourceInputs["sybase"] = args ? args.sybase : undefined;
|
|
200
201
|
resourceInputs["sybaseIq"] = args ? args.sybaseIq : undefined;
|
|
201
202
|
resourceInputs["teradata"] = args ? args.teradata : undefined;
|
|
203
|
+
resourceInputs["trino"] = args ? args.trino : undefined;
|
|
202
204
|
}
|
|
203
205
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
204
206
|
super(Resource.__pulumiType, name, resourceInputs, opts);
|