@ptfm/chainguard 0.1.28

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.
Files changed (72) hide show
  1. package/README.md +3 -0
  2. package/bin/accountAssociations.d.ts +110 -0
  3. package/bin/accountAssociations.js +62 -0
  4. package/bin/accountAssociations.js.map +1 -0
  5. package/bin/apkoBuild.d.ts +80 -0
  6. package/bin/apkoBuild.js +61 -0
  7. package/bin/apkoBuild.js.map +1 -0
  8. package/bin/config/index.d.ts +1 -0
  9. package/bin/config/index.js +21 -0
  10. package/bin/config/index.js.map +1 -0
  11. package/bin/config/vars.d.ts +17 -0
  12. package/bin/config/vars.js +25 -0
  13. package/bin/config/vars.js.map +1 -0
  14. package/bin/getGroup.d.ts +28 -0
  15. package/bin/getGroup.js +28 -0
  16. package/bin/getGroup.js.map +1 -0
  17. package/bin/getIdentity.d.ts +25 -0
  18. package/bin/getIdentity.js +24 -0
  19. package/bin/getIdentity.js.map +1 -0
  20. package/bin/getRole.d.ts +29 -0
  21. package/bin/getRole.js +28 -0
  22. package/bin/getRole.js.map +1 -0
  23. package/bin/getVersions.d.ts +34 -0
  24. package/bin/getVersions.js +24 -0
  25. package/bin/getVersions.js.map +1 -0
  26. package/bin/group.d.ts +87 -0
  27. package/bin/group.js +57 -0
  28. package/bin/group.js.map +1 -0
  29. package/bin/groupInvite.d.ts +92 -0
  30. package/bin/groupInvite.js +68 -0
  31. package/bin/groupInvite.js.map +1 -0
  32. package/bin/identity.d.ts +122 -0
  33. package/bin/identity.js +64 -0
  34. package/bin/identity.js.map +1 -0
  35. package/bin/identityProvider.d.ts +98 -0
  36. package/bin/identityProvider.js +63 -0
  37. package/bin/identityProvider.js.map +1 -0
  38. package/bin/imageRepo.d.ts +122 -0
  39. package/bin/imageRepo.js +64 -0
  40. package/bin/imageRepo.js.map +1 -0
  41. package/bin/imageTag.d.ts +72 -0
  42. package/bin/imageTag.js +56 -0
  43. package/bin/imageTag.js.map +1 -0
  44. package/bin/index.d.ts +51 -0
  45. package/bin/index.js +100 -0
  46. package/bin/index.js.map +1 -0
  47. package/bin/package.json +34 -0
  48. package/bin/provider.d.ts +48 -0
  49. package/bin/provider.js +47 -0
  50. package/bin/provider.js.map +1 -0
  51. package/bin/role.d.ts +84 -0
  52. package/bin/role.js +61 -0
  53. package/bin/role.js.map +1 -0
  54. package/bin/rolebinding.d.ts +72 -0
  55. package/bin/rolebinding.js +62 -0
  56. package/bin/rolebinding.js.map +1 -0
  57. package/bin/subscription.d.ts +60 -0
  58. package/bin/subscription.js +57 -0
  59. package/bin/subscription.js.map +1 -0
  60. package/bin/types/index.d.ts +3 -0
  61. package/bin/types/index.js +11 -0
  62. package/bin/types/index.js.map +1 -0
  63. package/bin/types/input.d.ts +187 -0
  64. package/bin/types/input.js +5 -0
  65. package/bin/types/input.js.map +1 -0
  66. package/bin/types/output.d.ts +309 -0
  67. package/bin/types/output.js +5 -0
  68. package/bin/types/output.js.map +1 -0
  69. package/bin/utilities.d.ts +9 -0
  70. package/bin/utilities.js +141 -0
  71. package/bin/utilities.js.map +1 -0
  72. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ > This provider is a derived work of the [Terraform Provider](https://github.com/chainguard-dev/terraform-provider-chainguard)
2
+ > distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,
3
+ > please consult the source [`terraform-provider-chainguard` repo](https://github.com/chainguard-dev/terraform-provider-chainguard/issues).
@@ -0,0 +1,110 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ export declare class AccountAssociations extends pulumi.CustomResource {
5
+ /**
6
+ * Get an existing AccountAssociations resource's state with the given name, ID, and optional extra
7
+ * properties used to qualify the lookup.
8
+ *
9
+ * @param name The _unique_ name of the resulting resource.
10
+ * @param id The _unique_ provider ID of the resource to lookup.
11
+ * @param state Any extra arguments used during the lookup.
12
+ * @param opts Optional settings to control the behavior of the CustomResource.
13
+ */
14
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccountAssociationsState, opts?: pulumi.CustomResourceOptions): AccountAssociations;
15
+ /**
16
+ * Returns true if the given object is an instance of AccountAssociations. This is designed to work even
17
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
18
+ */
19
+ static isInstance(obj: any): obj is AccountAssociations;
20
+ /**
21
+ * Amazon account configuration
22
+ */
23
+ readonly amazon: pulumi.Output<outputs.AccountAssociationsAmazon | undefined>;
24
+ /**
25
+ * Association of Chainguard services to the service principals they should assume when talking to Chainguard APIs.
26
+ */
27
+ readonly chainguard: pulumi.Output<outputs.AccountAssociationsChainguard | undefined>;
28
+ /**
29
+ * Description of the account association.
30
+ */
31
+ readonly description: pulumi.Output<string | undefined>;
32
+ /**
33
+ * Google Cloud Platform account association configuration
34
+ */
35
+ readonly google: pulumi.Output<outputs.AccountAssociationsGoogle | undefined>;
36
+ /**
37
+ * The UIDP of the IAM group to associate to cloud accounts.
38
+ */
39
+ readonly group: pulumi.Output<string>;
40
+ /**
41
+ * Name of the account association.
42
+ */
43
+ readonly name: pulumi.Output<string>;
44
+ /**
45
+ * Create a AccountAssociations resource with the given unique name, arguments, and options.
46
+ *
47
+ * @param name The _unique_ name of the resource.
48
+ * @param args The arguments to use to populate this resource's properties.
49
+ * @param opts A bag of options that control this resource's behavior.
50
+ */
51
+ constructor(name: string, args: AccountAssociationsArgs, opts?: pulumi.CustomResourceOptions);
52
+ }
53
+ /**
54
+ * Input properties used for looking up and filtering AccountAssociations resources.
55
+ */
56
+ export interface AccountAssociationsState {
57
+ /**
58
+ * Amazon account configuration
59
+ */
60
+ amazon?: pulumi.Input<inputs.AccountAssociationsAmazon>;
61
+ /**
62
+ * Association of Chainguard services to the service principals they should assume when talking to Chainguard APIs.
63
+ */
64
+ chainguard?: pulumi.Input<inputs.AccountAssociationsChainguard>;
65
+ /**
66
+ * Description of the account association.
67
+ */
68
+ description?: pulumi.Input<string>;
69
+ /**
70
+ * Google Cloud Platform account association configuration
71
+ */
72
+ google?: pulumi.Input<inputs.AccountAssociationsGoogle>;
73
+ /**
74
+ * The UIDP of the IAM group to associate to cloud accounts.
75
+ */
76
+ group?: pulumi.Input<string>;
77
+ /**
78
+ * Name of the account association.
79
+ */
80
+ name?: pulumi.Input<string>;
81
+ }
82
+ /**
83
+ * The set of arguments for constructing a AccountAssociations resource.
84
+ */
85
+ export interface AccountAssociationsArgs {
86
+ /**
87
+ * Amazon account configuration
88
+ */
89
+ amazon?: pulumi.Input<inputs.AccountAssociationsAmazon>;
90
+ /**
91
+ * Association of Chainguard services to the service principals they should assume when talking to Chainguard APIs.
92
+ */
93
+ chainguard?: pulumi.Input<inputs.AccountAssociationsChainguard>;
94
+ /**
95
+ * Description of the account association.
96
+ */
97
+ description?: pulumi.Input<string>;
98
+ /**
99
+ * Google Cloud Platform account association configuration
100
+ */
101
+ google?: pulumi.Input<inputs.AccountAssociationsGoogle>;
102
+ /**
103
+ * The UIDP of the IAM group to associate to cloud accounts.
104
+ */
105
+ group: pulumi.Input<string>;
106
+ /**
107
+ * Name of the account association.
108
+ */
109
+ name?: pulumi.Input<string>;
110
+ }
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.AccountAssociations = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class AccountAssociations extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing AccountAssociations resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new AccountAssociations(name, state, Object.assign(Object.assign({}, opts), { id: id }));
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of AccountAssociations. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === AccountAssociations.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["amazon"] = state ? state.amazon : undefined;
37
+ resourceInputs["chainguard"] = state ? state.chainguard : undefined;
38
+ resourceInputs["description"] = state ? state.description : undefined;
39
+ resourceInputs["google"] = state ? state.google : undefined;
40
+ resourceInputs["group"] = state ? state.group : undefined;
41
+ resourceInputs["name"] = state ? state.name : undefined;
42
+ }
43
+ else {
44
+ const args = argsOrState;
45
+ if ((!args || args.group === undefined) && !opts.urn) {
46
+ throw new Error("Missing required property 'group'");
47
+ }
48
+ resourceInputs["amazon"] = args ? args.amazon : undefined;
49
+ resourceInputs["chainguard"] = args ? args.chainguard : undefined;
50
+ resourceInputs["description"] = args ? args.description : undefined;
51
+ resourceInputs["google"] = args ? args.google : undefined;
52
+ resourceInputs["group"] = args ? args.group : undefined;
53
+ resourceInputs["name"] = args ? args.name : undefined;
54
+ }
55
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
56
+ super(AccountAssociations.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
57
+ }
58
+ }
59
+ exports.AccountAssociations = AccountAssociations;
60
+ /** @internal */
61
+ AccountAssociations.__pulumiType = 'chainguard:index/accountAssociations:AccountAssociations';
62
+ //# sourceMappingURL=accountAssociations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accountAssociations.js","sourceRoot":"","sources":["../accountAssociations.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,80 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class ApkoBuild extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing ApkoBuild resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ApkoBuildState, opts?: pulumi.CustomResourceOptions): ApkoBuild;
13
+ /**
14
+ * Returns true if the given object is an instance of ApkoBuild. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is ApkoBuild;
18
+ /**
19
+ * The apko configuration to build.
20
+ */
21
+ readonly config: pulumi.Output<string>;
22
+ /**
23
+ * The resulting fully-qualified digest (e.g. {repo}@sha256:deadbeef).
24
+ */
25
+ readonly imageRef: pulumi.Output<string>;
26
+ /**
27
+ * The layer media type to build.
28
+ */
29
+ readonly mediaType: pulumi.Output<string>;
30
+ /**
31
+ * The UIDP of the repository in which to build the image.
32
+ */
33
+ readonly repo: pulumi.Output<string>;
34
+ /**
35
+ * Create a ApkoBuild resource with the given unique name, arguments, and options.
36
+ *
37
+ * @param name The _unique_ name of the resource.
38
+ * @param args The arguments to use to populate this resource's properties.
39
+ * @param opts A bag of options that control this resource's behavior.
40
+ */
41
+ constructor(name: string, args: ApkoBuildArgs, opts?: pulumi.CustomResourceOptions);
42
+ }
43
+ /**
44
+ * Input properties used for looking up and filtering ApkoBuild resources.
45
+ */
46
+ export interface ApkoBuildState {
47
+ /**
48
+ * The apko configuration to build.
49
+ */
50
+ config?: pulumi.Input<string>;
51
+ /**
52
+ * The resulting fully-qualified digest (e.g. {repo}@sha256:deadbeef).
53
+ */
54
+ imageRef?: pulumi.Input<string>;
55
+ /**
56
+ * The layer media type to build.
57
+ */
58
+ mediaType?: pulumi.Input<string>;
59
+ /**
60
+ * The UIDP of the repository in which to build the image.
61
+ */
62
+ repo?: pulumi.Input<string>;
63
+ }
64
+ /**
65
+ * The set of arguments for constructing a ApkoBuild resource.
66
+ */
67
+ export interface ApkoBuildArgs {
68
+ /**
69
+ * The apko configuration to build.
70
+ */
71
+ config: pulumi.Input<string>;
72
+ /**
73
+ * The layer media type to build.
74
+ */
75
+ mediaType?: pulumi.Input<string>;
76
+ /**
77
+ * The UIDP of the repository in which to build the image.
78
+ */
79
+ repo: pulumi.Input<string>;
80
+ }
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.ApkoBuild = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class ApkoBuild extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing ApkoBuild resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new ApkoBuild(name, state, Object.assign(Object.assign({}, opts), { id: id }));
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of ApkoBuild. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === ApkoBuild.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["config"] = state ? state.config : undefined;
37
+ resourceInputs["imageRef"] = state ? state.imageRef : undefined;
38
+ resourceInputs["mediaType"] = state ? state.mediaType : undefined;
39
+ resourceInputs["repo"] = state ? state.repo : undefined;
40
+ }
41
+ else {
42
+ const args = argsOrState;
43
+ if ((!args || args.config === undefined) && !opts.urn) {
44
+ throw new Error("Missing required property 'config'");
45
+ }
46
+ if ((!args || args.repo === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'repo'");
48
+ }
49
+ resourceInputs["config"] = args ? args.config : undefined;
50
+ resourceInputs["mediaType"] = args ? args.mediaType : undefined;
51
+ resourceInputs["repo"] = args ? args.repo : undefined;
52
+ resourceInputs["imageRef"] = undefined /*out*/;
53
+ }
54
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
55
+ super(ApkoBuild.__pulumiType, name, resourceInputs, opts, false /*dependency*/, utilities.getPackage());
56
+ }
57
+ }
58
+ exports.ApkoBuild = ApkoBuild;
59
+ /** @internal */
60
+ ApkoBuild.__pulumiType = 'chainguard:index/apkoBuild:ApkoBuild';
61
+ //# sourceMappingURL=apkoBuild.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"apkoBuild.js","sourceRoot":"","sources":["../apkoBuild.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IA2BD,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,KAAK,CAAC,cAAc,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;IAC5G,CAAC;;AA7EL,8BA8EC;AAhEG,gBAAgB;AACO,sBAAY,GAAG,sCAAsC,CAAC"}
@@ -0,0 +1 @@
1
+ export * from "./vars";
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ // Export members:
20
+ __exportStar(require("./vars"), exports);
21
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;AAEjF,kBAAkB;AAClB,yCAAuB"}
@@ -0,0 +1,17 @@
1
+ import * as outputs from "../types/output";
2
+ /**
3
+ * URL of Chainguard console API.
4
+ */
5
+ export declare const consoleApi: string | undefined;
6
+ /**
7
+ * Options to configure automatic login when Chainguard token is expired.
8
+ */
9
+ export declare const loginOptions: outputs.config.LoginOptions | undefined;
10
+ /**
11
+ * An allowlist of version streams. Can be either set in the provider or as the "CHAINGUARD_VERSION_ALLOW" environment
12
+ * variable. When setting via an environment variable, the list must be comma separated. For example, if the resource
13
+ * returns the following versions: - foo-1.0 - foo-1.1 - foo-1.2 And the allowlist is set to ["foo-1.0"], then the returned
14
+ * results will return only the version stream "foo-1.0". This applies to both EOL and non EOL version streams, and also
15
+ * affects the computed "is_latest" field to only consider the filtered versions.
16
+ */
17
+ export declare const versionStreamAllows: string[] | undefined;
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ const pulumi = require("@pulumi/pulumi");
6
+ const __config = new pulumi.Config("chainguard");
7
+ Object.defineProperty(exports, "consoleApi", {
8
+ get() {
9
+ return __config.get("consoleApi");
10
+ },
11
+ enumerable: true,
12
+ });
13
+ Object.defineProperty(exports, "loginOptions", {
14
+ get() {
15
+ return __config.getObject("loginOptions");
16
+ },
17
+ enumerable: true,
18
+ });
19
+ Object.defineProperty(exports, "versionStreamAllows", {
20
+ get() {
21
+ return __config.getObject("versionStreamAllows");
22
+ },
23
+ enumerable: true,
24
+ });
25
+ //# sourceMappingURL=vars.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;AAEjF,yCAAyC;AAMzC,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;AAMjD,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE;IACzC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACtC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAMH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAA8B,cAAc,CAAC,CAAC;IAC3E,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAUH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,qBAAqB,EAAE;IAClD,GAAG;QACC,OAAO,QAAQ,CAAC,SAAS,CAAW,qBAAqB,CAAC,CAAC;IAC/D,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
@@ -0,0 +1,28 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare function getGroup(args?: GetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupResult>;
3
+ /**
4
+ * A collection of arguments for invoking getGroup.
5
+ */
6
+ export interface GetGroupArgs {
7
+ id?: string;
8
+ name?: string;
9
+ parentId?: string;
10
+ }
11
+ /**
12
+ * A collection of values returned by getGroup.
13
+ */
14
+ export interface GetGroupResult {
15
+ readonly description: string;
16
+ readonly id?: string;
17
+ readonly name?: string;
18
+ readonly parentId?: string;
19
+ }
20
+ export declare function getGroupOutput(args?: GetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupResult>;
21
+ /**
22
+ * A collection of arguments for invoking getGroup.
23
+ */
24
+ export interface GetGroupOutputArgs {
25
+ id?: pulumi.Input<string>;
26
+ name?: pulumi.Input<string>;
27
+ parentId?: pulumi.Input<string>;
28
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getGroupOutput = exports.getGroup = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ function getGroup(args, opts) {
9
+ args = args || {};
10
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
11
+ return pulumi.runtime.invoke("chainguard:index/getGroup:getGroup", {
12
+ "id": args.id,
13
+ "name": args.name,
14
+ "parentId": args.parentId,
15
+ }, opts, utilities.getPackage());
16
+ }
17
+ exports.getGroup = getGroup;
18
+ function getGroupOutput(args, opts) {
19
+ args = args || {};
20
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
21
+ return pulumi.runtime.invokeOutput("chainguard:index/getGroup:getGroup", {
22
+ "id": args.id,
23
+ "name": args.name,
24
+ "parentId": args.parentId,
25
+ }, opts, utilities.getPackage());
26
+ }
27
+ exports.getGroupOutput = getGroupOutput;
28
+ //# sourceMappingURL=getGroup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AARD,4BAQC;AAoBD,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAAiC;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AARD,wCAQC"}
@@ -0,0 +1,25 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare function getIdentity(args: GetIdentityArgs, opts?: pulumi.InvokeOptions): Promise<GetIdentityResult>;
3
+ /**
4
+ * A collection of arguments for invoking getIdentity.
5
+ */
6
+ export interface GetIdentityArgs {
7
+ issuer: string;
8
+ subject: string;
9
+ }
10
+ /**
11
+ * A collection of values returned by getIdentity.
12
+ */
13
+ export interface GetIdentityResult {
14
+ readonly id: string;
15
+ readonly issuer: string;
16
+ readonly subject: string;
17
+ }
18
+ export declare function getIdentityOutput(args: GetIdentityOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIdentityResult>;
19
+ /**
20
+ * A collection of arguments for invoking getIdentity.
21
+ */
22
+ export interface GetIdentityOutputArgs {
23
+ issuer: pulumi.Input<string>;
24
+ subject: pulumi.Input<string>;
25
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getIdentityOutput = exports.getIdentity = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ function getIdentity(args, opts) {
9
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
10
+ return pulumi.runtime.invoke("chainguard:index/getIdentity:getIdentity", {
11
+ "issuer": args.issuer,
12
+ "subject": args.subject,
13
+ }, opts, utilities.getPackage());
14
+ }
15
+ exports.getIdentity = getIdentity;
16
+ function getIdentityOutput(args, opts) {
17
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
18
+ return pulumi.runtime.invokeOutput("chainguard:index/getIdentity:getIdentity", {
19
+ "issuer": args.issuer,
20
+ "subject": args.subject,
21
+ }, opts, utilities.getPackage());
22
+ }
23
+ exports.getIdentityOutput = getIdentityOutput;
24
+ //# sourceMappingURL=getIdentity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getIdentity.js","sourceRoot":"","sources":["../getIdentity.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AAND,kCAMC;AAkBD,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AAND,8CAMC"}
@@ -0,0 +1,29 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ export declare function getRole(args?: GetRoleArgs, opts?: pulumi.InvokeOptions): Promise<GetRoleResult>;
4
+ /**
5
+ * A collection of arguments for invoking getRole.
6
+ */
7
+ export interface GetRoleArgs {
8
+ id?: string;
9
+ name?: string;
10
+ parent?: string;
11
+ }
12
+ /**
13
+ * A collection of values returned by getRole.
14
+ */
15
+ export interface GetRoleResult {
16
+ readonly id?: string;
17
+ readonly items: outputs.GetRoleItem[];
18
+ readonly name?: string;
19
+ readonly parent?: string;
20
+ }
21
+ export declare function getRoleOutput(args?: GetRoleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRoleResult>;
22
+ /**
23
+ * A collection of arguments for invoking getRole.
24
+ */
25
+ export interface GetRoleOutputArgs {
26
+ id?: pulumi.Input<string>;
27
+ name?: pulumi.Input<string>;
28
+ parent?: pulumi.Input<string>;
29
+ }
package/bin/getRole.js ADDED
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getRoleOutput = exports.getRole = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ function getRole(args, opts) {
9
+ args = args || {};
10
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
11
+ return pulumi.runtime.invoke("chainguard:index/getRole:getRole", {
12
+ "id": args.id,
13
+ "name": args.name,
14
+ "parent": args.parent,
15
+ }, opts, utilities.getPackage());
16
+ }
17
+ exports.getRole = getRole;
18
+ function getRoleOutput(args, opts) {
19
+ args = args || {};
20
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
21
+ return pulumi.runtime.invokeOutput("chainguard:index/getRole:getRole", {
22
+ "id": args.id,
23
+ "name": args.name,
24
+ "parent": args.parent,
25
+ }, opts, utilities.getPackage());
26
+ }
27
+ exports.getRoleOutput = getRoleOutput;
28
+ //# sourceMappingURL=getRole.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AARD,0BAQC;AAoBD,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAAiC;IACrF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,EAAE,SAAS,CAAC,UAAU,EAAE,CAAC,CAAC;AACrC,CAAC;AARD,sCAQC"}
@@ -0,0 +1,34 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ export declare function getVersions(args: GetVersionsArgs, opts?: pulumi.InvokeOptions): Promise<GetVersionsResult>;
4
+ /**
5
+ * A collection of arguments for invoking getVersions.
6
+ */
7
+ export interface GetVersionsArgs {
8
+ package: string;
9
+ variant?: string;
10
+ }
11
+ /**
12
+ * A collection of values returned by getVersions.
13
+ */
14
+ export interface GetVersionsResult {
15
+ /**
16
+ * The provider-assigned unique ID for this managed resource.
17
+ */
18
+ readonly id: string;
19
+ readonly orderedKeys: string[];
20
+ readonly package: string;
21
+ readonly variant?: string;
22
+ readonly versionMap: {
23
+ [key: string]: outputs.GetVersionsVersionMap;
24
+ };
25
+ readonly versions: outputs.GetVersionsVersions;
26
+ }
27
+ export declare function getVersionsOutput(args: GetVersionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVersionsResult>;
28
+ /**
29
+ * A collection of arguments for invoking getVersions.
30
+ */
31
+ export interface GetVersionsOutputArgs {
32
+ package: pulumi.Input<string>;
33
+ variant?: pulumi.Input<string>;
34
+ }
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
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.getVersionsOutput = exports.getVersions = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ function getVersions(args, opts) {
9
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
10
+ return pulumi.runtime.invoke("chainguard:index/getVersions:getVersions", {
11
+ "package": args.package,
12
+ "variant": args.variant,
13
+ }, opts, utilities.getPackage());
14
+ }
15
+ exports.getVersions = getVersions;
16
+ function getVersionsOutput(args, opts) {
17
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
18
+ return pulumi.runtime.invokeOutput("chainguard:index/getVersions:getVersions", {
19
+ "package": args.package,
20
+ "variant": args.variant,
21
+ }, opts, utilities.getPackage());
22
+ }
23
+ exports.getVersionsOutput = getVersionsOutput;
24
+ //# sourceMappingURL=getVersions.js.map