@three14/pulumi-argocd 1.0.1 → 1.1.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/accountToken.d.ts +5 -3
- package/accountToken.js +15 -13
- package/accountToken.js.map +1 -1
- package/application.d.ts +15 -1
- package/application.js +20 -16
- package/application.js.map +1 -1
- package/applicationSet.d.ts +83 -0
- package/applicationSet.js +91 -8
- package/applicationSet.js.map +1 -1
- package/cluster.d.ts +2 -2
- package/cluster.js +20 -20
- package/cluster.js.map +1 -1
- package/config/index.js +1 -1
- package/config/index.js.map +1 -1
- package/config/vars.d.ts +14 -21
- package/config/vars.js +1 -1
- package/config/vars.js.map +1 -1
- package/index.d.ts +1 -18
- package/index.js +19 -30
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/provider.d.ts +32 -29
- package/provider.js +29 -21
- package/provider.js.map +1 -1
- package/types/index.js +1 -1
- package/types/index.js.map +1 -1
- package/types/input.d.ts +9877 -5776
- package/types/input.js +1 -1
- package/types/input.js.map +1 -1
- package/types/output.d.ts +10481 -6380
- package/types/output.js +1 -1
- package/types/output.js.map +1 -1
- package/utilities.d.ts +0 -4
- package/utilities.js +20 -30
- package/utilities.js.map +1 -1
- package/project.d.ts +0 -198
- package/project.js +0 -193
- package/project.js.map +0 -1
- package/projectToken.d.ts +0 -150
- package/projectToken.js +0 -91
- package/projectToken.js.map +0 -1
- package/repository.d.ts +0 -291
- package/repository.js +0 -135
- package/repository.js.map +0 -1
- package/repositoryCertificate.d.ts +0 -84
- package/repositoryCertificate.js +0 -73
- package/repositoryCertificate.js.map +0 -1
- package/repositoryCredentials.d.ts +0 -207
- package/repositoryCredentials.js +0 -113
- package/repositoryCredentials.js.map +0 -1
package/accountToken.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Manages ArgoCD [account](https://argo-cd.readthedocs.io/en/latest/user-guide/commands/argocd_account/) JWT tokens.
|
|
4
4
|
*
|
|
5
|
+
* > **Security Notice** The JWT token generated by this resource is treated as sensitive and, thus, not displayed in console output. However, it will be stored *unencrypted* in your Pulumi state file. Read more about sensitive data handling in the Pulumi documentation.
|
|
6
|
+
*
|
|
5
7
|
* ## Example Usage
|
|
6
8
|
*
|
|
7
9
|
* ```typescript
|
|
@@ -43,7 +45,7 @@ export declare class AccountToken extends pulumi.CustomResource {
|
|
|
43
45
|
*/
|
|
44
46
|
readonly expiresAt: pulumi.Output<string>;
|
|
45
47
|
/**
|
|
46
|
-
* Duration before the token will expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. E.g. `
|
|
48
|
+
* Duration before the token will expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. E.g. `30m`, `12h`. Default: No expiration.
|
|
47
49
|
*/
|
|
48
50
|
readonly expiresIn: pulumi.Output<string | undefined>;
|
|
49
51
|
/**
|
|
@@ -84,7 +86,7 @@ export interface AccountTokenState {
|
|
|
84
86
|
*/
|
|
85
87
|
expiresAt?: pulumi.Input<string>;
|
|
86
88
|
/**
|
|
87
|
-
* Duration before the token will expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. E.g. `
|
|
89
|
+
* Duration before the token will expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. E.g. `30m`, `12h`. Default: No expiration.
|
|
88
90
|
*/
|
|
89
91
|
expiresIn?: pulumi.Input<string>;
|
|
90
92
|
/**
|
|
@@ -113,7 +115,7 @@ export interface AccountTokenArgs {
|
|
|
113
115
|
*/
|
|
114
116
|
account?: pulumi.Input<string>;
|
|
115
117
|
/**
|
|
116
|
-
* Duration before the token will expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. E.g. `
|
|
118
|
+
* Duration before the token will expire. Valid time units are `ns`, `us` (or `µs`), `ms`, `s`, `m`, `h`. E.g. `30m`, `12h`. Default: No expiration.
|
|
117
119
|
*/
|
|
118
120
|
expiresIn?: pulumi.Input<string>;
|
|
119
121
|
/**
|
package/accountToken.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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
5
|
exports.AccountToken = void 0;
|
|
@@ -8,6 +8,8 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Manages ArgoCD [account](https://argo-cd.readthedocs.io/en/latest/user-guide/commands/argocd_account/) JWT tokens.
|
|
10
10
|
*
|
|
11
|
+
* > **Security Notice** The JWT token generated by this resource is treated as sensitive and, thus, not displayed in console output. However, it will be stored *unencrypted* in your Pulumi state file. Read more about sensitive data handling in the Pulumi documentation.
|
|
12
|
+
*
|
|
11
13
|
* ## Example Usage
|
|
12
14
|
*
|
|
13
15
|
* ```typescript
|
|
@@ -35,7 +37,7 @@ class AccountToken extends pulumi.CustomResource {
|
|
|
35
37
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
36
38
|
*/
|
|
37
39
|
static get(name, id, state, opts) {
|
|
38
|
-
return new AccountToken(name, state,
|
|
40
|
+
return new AccountToken(name, state, { ...opts, id: id });
|
|
39
41
|
}
|
|
40
42
|
/**
|
|
41
43
|
* Returns true if the given object is an instance of AccountToken. This is designed to work even
|
|
@@ -52,20 +54,20 @@ class AccountToken extends pulumi.CustomResource {
|
|
|
52
54
|
opts = opts || {};
|
|
53
55
|
if (opts.id) {
|
|
54
56
|
const state = argsOrState;
|
|
55
|
-
resourceInputs["account"] = state
|
|
56
|
-
resourceInputs["expiresAt"] = state
|
|
57
|
-
resourceInputs["expiresIn"] = state
|
|
58
|
-
resourceInputs["issuedAt"] = state
|
|
59
|
-
resourceInputs["jwt"] = state
|
|
60
|
-
resourceInputs["renewAfter"] = state
|
|
61
|
-
resourceInputs["renewBefore"] = state
|
|
57
|
+
resourceInputs["account"] = state?.account;
|
|
58
|
+
resourceInputs["expiresAt"] = state?.expiresAt;
|
|
59
|
+
resourceInputs["expiresIn"] = state?.expiresIn;
|
|
60
|
+
resourceInputs["issuedAt"] = state?.issuedAt;
|
|
61
|
+
resourceInputs["jwt"] = state?.jwt;
|
|
62
|
+
resourceInputs["renewAfter"] = state?.renewAfter;
|
|
63
|
+
resourceInputs["renewBefore"] = state?.renewBefore;
|
|
62
64
|
}
|
|
63
65
|
else {
|
|
64
66
|
const args = argsOrState;
|
|
65
|
-
resourceInputs["account"] = args
|
|
66
|
-
resourceInputs["expiresIn"] = args
|
|
67
|
-
resourceInputs["renewAfter"] = args
|
|
68
|
-
resourceInputs["renewBefore"] = args
|
|
67
|
+
resourceInputs["account"] = args?.account;
|
|
68
|
+
resourceInputs["expiresIn"] = args?.expiresIn;
|
|
69
|
+
resourceInputs["renewAfter"] = args?.renewAfter;
|
|
70
|
+
resourceInputs["renewBefore"] = args?.renewBefore;
|
|
69
71
|
resourceInputs["expiresAt"] = undefined /*out*/;
|
|
70
72
|
resourceInputs["issuedAt"] = undefined /*out*/;
|
|
71
73
|
resourceInputs["jwt"] = undefined /*out*/;
|
package/accountToken.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountToken.js","sourceRoot":"","sources":["../accountToken.ts"],"names":[],"mappings":";AAAA,
|
|
1
|
+
{"version":3,"file":"accountToken.js","sourceRoot":"","sources":["../accountToken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAuCD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;YACnC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;SACtD;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,KAAK,CAAC,EAAE,CAAC;QACxD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA3FL,oCA4FC;AA9EG,gBAAgB;AACO,yBAAY,GAAG,wCAAwC,CAAC"}
|
package/application.d.ts
CHANGED
|
@@ -156,7 +156,9 @@ import * as outputs from "./types/output";
|
|
|
156
156
|
*
|
|
157
157
|
* ## Import
|
|
158
158
|
*
|
|
159
|
-
*
|
|
159
|
+
* The `pulumi import` command can be used, for example:
|
|
160
|
+
*
|
|
161
|
+
* ArgoCD applications can be imported using an id consisting of `{name}:{namespace}`.
|
|
160
162
|
*
|
|
161
163
|
* ```sh
|
|
162
164
|
* $ pulumi import argocd:index/application:Application myapp myapp:argocd
|
|
@@ -194,6 +196,10 @@ export declare class Application extends pulumi.CustomResource {
|
|
|
194
196
|
* Status information for the application. **Note**: this is not guaranteed to be up to date immediately after creating/updating an application unless `wait=true`.
|
|
195
197
|
*/
|
|
196
198
|
readonly statuses: pulumi.Output<outputs.ApplicationStatus[]>;
|
|
199
|
+
/**
|
|
200
|
+
* Trigger sync immediately after create/update. Helps in case when a Sync window is defined. It is required that the sync window is defined with `manualSync = true`.
|
|
201
|
+
*/
|
|
202
|
+
readonly sync: pulumi.Output<boolean | undefined>;
|
|
197
203
|
/**
|
|
198
204
|
* Whether to validate the application spec before creating or updating the application.
|
|
199
205
|
*/
|
|
@@ -231,6 +237,10 @@ export interface ApplicationState {
|
|
|
231
237
|
* Status information for the application. **Note**: this is not guaranteed to be up to date immediately after creating/updating an application unless `wait=true`.
|
|
232
238
|
*/
|
|
233
239
|
statuses?: pulumi.Input<pulumi.Input<inputs.ApplicationStatus>[]>;
|
|
240
|
+
/**
|
|
241
|
+
* Trigger sync immediately after create/update. Helps in case when a Sync window is defined. It is required that the sync window is defined with `manualSync = true`.
|
|
242
|
+
*/
|
|
243
|
+
sync?: pulumi.Input<boolean>;
|
|
234
244
|
/**
|
|
235
245
|
* Whether to validate the application spec before creating or updating the application.
|
|
236
246
|
*/
|
|
@@ -256,6 +266,10 @@ export interface ApplicationArgs {
|
|
|
256
266
|
* The application specification.
|
|
257
267
|
*/
|
|
258
268
|
spec: pulumi.Input<inputs.ApplicationSpec>;
|
|
269
|
+
/**
|
|
270
|
+
* Trigger sync immediately after create/update. Helps in case when a Sync window is defined. It is required that the sync window is defined with `manualSync = true`.
|
|
271
|
+
*/
|
|
272
|
+
sync?: pulumi.Input<boolean>;
|
|
259
273
|
/**
|
|
260
274
|
* Whether to validate the application spec before creating or updating the application.
|
|
261
275
|
*/
|
package/application.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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
5
|
exports.Application = void 0;
|
|
@@ -160,7 +160,9 @@ const utilities = require("./utilities");
|
|
|
160
160
|
*
|
|
161
161
|
* ## Import
|
|
162
162
|
*
|
|
163
|
-
*
|
|
163
|
+
* The `pulumi import` command can be used, for example:
|
|
164
|
+
*
|
|
165
|
+
* ArgoCD applications can be imported using an id consisting of `{name}:{namespace}`.
|
|
164
166
|
*
|
|
165
167
|
* ```sh
|
|
166
168
|
* $ pulumi import argocd:index/application:Application myapp myapp:argocd
|
|
@@ -177,7 +179,7 @@ class Application extends pulumi.CustomResource {
|
|
|
177
179
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
178
180
|
*/
|
|
179
181
|
static get(name, id, state, opts) {
|
|
180
|
-
return new Application(name, state,
|
|
182
|
+
return new Application(name, state, { ...opts, id: id });
|
|
181
183
|
}
|
|
182
184
|
/**
|
|
183
185
|
* Returns true if the given object is an instance of Application. This is designed to work even
|
|
@@ -194,26 +196,28 @@ class Application extends pulumi.CustomResource {
|
|
|
194
196
|
opts = opts || {};
|
|
195
197
|
if (opts.id) {
|
|
196
198
|
const state = argsOrState;
|
|
197
|
-
resourceInputs["cascade"] = state
|
|
198
|
-
resourceInputs["metadata"] = state
|
|
199
|
-
resourceInputs["spec"] = state
|
|
200
|
-
resourceInputs["statuses"] = state
|
|
201
|
-
resourceInputs["
|
|
202
|
-
resourceInputs["
|
|
199
|
+
resourceInputs["cascade"] = state?.cascade;
|
|
200
|
+
resourceInputs["metadata"] = state?.metadata;
|
|
201
|
+
resourceInputs["spec"] = state?.spec;
|
|
202
|
+
resourceInputs["statuses"] = state?.statuses;
|
|
203
|
+
resourceInputs["sync"] = state?.sync;
|
|
204
|
+
resourceInputs["validate"] = state?.validate;
|
|
205
|
+
resourceInputs["wait"] = state?.wait;
|
|
203
206
|
}
|
|
204
207
|
else {
|
|
205
208
|
const args = argsOrState;
|
|
206
|
-
if (
|
|
209
|
+
if (args?.metadata === undefined && !opts.urn) {
|
|
207
210
|
throw new Error("Missing required property 'metadata'");
|
|
208
211
|
}
|
|
209
|
-
if (
|
|
212
|
+
if (args?.spec === undefined && !opts.urn) {
|
|
210
213
|
throw new Error("Missing required property 'spec'");
|
|
211
214
|
}
|
|
212
|
-
resourceInputs["cascade"] = args
|
|
213
|
-
resourceInputs["metadata"] = args
|
|
214
|
-
resourceInputs["spec"] = args
|
|
215
|
-
resourceInputs["
|
|
216
|
-
resourceInputs["
|
|
215
|
+
resourceInputs["cascade"] = args?.cascade;
|
|
216
|
+
resourceInputs["metadata"] = args?.metadata;
|
|
217
|
+
resourceInputs["spec"] = args?.spec;
|
|
218
|
+
resourceInputs["sync"] = args?.sync;
|
|
219
|
+
resourceInputs["validate"] = args?.validate;
|
|
220
|
+
resourceInputs["wait"] = args?.wait;
|
|
217
221
|
resourceInputs["statuses"] = undefined /*out*/;
|
|
218
222
|
}
|
|
219
223
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/application.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"application.js","sourceRoot":"","sources":["../application.ts"],"names":[],"mappings":";AAAA,
|
|
1
|
+
{"version":3,"file":"application.js","sourceRoot":"","sources":["../application.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkKG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAuCD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,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,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AA/FL,kCAgGC;AAlFG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
|
package/applicationSet.d.ts
CHANGED
|
@@ -185,6 +185,43 @@ import * as outputs from "./types/output";
|
|
|
185
185
|
* },
|
|
186
186
|
* },
|
|
187
187
|
* });
|
|
188
|
+
* // List Generator with elements_yaml
|
|
189
|
+
* const listElementsYaml = new argocd.ApplicationSet("list_elements_yaml", {
|
|
190
|
+
* metadata: {
|
|
191
|
+
* name: "list-elements-yaml",
|
|
192
|
+
* },
|
|
193
|
+
* spec: {
|
|
194
|
+
* generators: [{
|
|
195
|
+
* lists: [{
|
|
196
|
+
* elementsYaml: `- cluster: engineering-dev
|
|
197
|
+
* url: https://kubernetes.default.svc
|
|
198
|
+
* environment: development
|
|
199
|
+
* - cluster: engineering-prod
|
|
200
|
+
* url: https://kubernetes.default.svc
|
|
201
|
+
* environment: production
|
|
202
|
+
* foo: bar
|
|
203
|
+
* `,
|
|
204
|
+
* }],
|
|
205
|
+
* }],
|
|
206
|
+
* template: {
|
|
207
|
+
* metadata: {
|
|
208
|
+
* name: "{{cluster}}-guestbook",
|
|
209
|
+
* },
|
|
210
|
+
* spec: {
|
|
211
|
+
* project: "my-project",
|
|
212
|
+
* sources: [{
|
|
213
|
+
* repoUrl: "https://github.com/argoproj/argo-cd.git",
|
|
214
|
+
* targetRevision: "HEAD",
|
|
215
|
+
* path: "applicationset/examples/list-generator/guestbook/{{cluster}}",
|
|
216
|
+
* }],
|
|
217
|
+
* destination: {
|
|
218
|
+
* server: "{{url}}",
|
|
219
|
+
* namespace: "guestbook",
|
|
220
|
+
* },
|
|
221
|
+
* },
|
|
222
|
+
* },
|
|
223
|
+
* },
|
|
224
|
+
* });
|
|
188
225
|
* // Matrix Generator
|
|
189
226
|
* const matrix = new argocd.ApplicationSet("matrix", {
|
|
190
227
|
* metadata: {
|
|
@@ -352,6 +389,52 @@ import * as outputs from "./types/output";
|
|
|
352
389
|
* },
|
|
353
390
|
* },
|
|
354
391
|
* });
|
|
392
|
+
* // Pull Request Generator - Azure DevOps
|
|
393
|
+
* const prAzureDevops = new argocd.ApplicationSet("pr_azure_devops", {
|
|
394
|
+
* metadata: {
|
|
395
|
+
* name: "pr-azure-devops",
|
|
396
|
+
* },
|
|
397
|
+
* spec: {
|
|
398
|
+
* generators: [{
|
|
399
|
+
* pullRequests: [{
|
|
400
|
+
* azureDevops: {
|
|
401
|
+
* api: "https://dev.azure.com",
|
|
402
|
+
* organization: "myorg",
|
|
403
|
+
* project: "myproject",
|
|
404
|
+
* repo: "myrepository",
|
|
405
|
+
* labels: ["preview"],
|
|
406
|
+
* tokenRef: {
|
|
407
|
+
* secretName: "azure-devops-token",
|
|
408
|
+
* key: "token",
|
|
409
|
+
* },
|
|
410
|
+
* },
|
|
411
|
+
* }],
|
|
412
|
+
* }],
|
|
413
|
+
* template: {
|
|
414
|
+
* metadata: {
|
|
415
|
+
* name: "myapp-{{branch}}-{{number}}",
|
|
416
|
+
* },
|
|
417
|
+
* spec: {
|
|
418
|
+
* project: "default",
|
|
419
|
+
* sources: [{
|
|
420
|
+
* repoUrl: "https://github.com/myorg/myrepo.git",
|
|
421
|
+
* path: "kubernetes/",
|
|
422
|
+
* targetRevision: "{{head_sha}}",
|
|
423
|
+
* helm: {
|
|
424
|
+
* parameters: [{
|
|
425
|
+
* name: "image.tag",
|
|
426
|
+
* value: "pull-{{head_sha}}",
|
|
427
|
+
* }],
|
|
428
|
+
* },
|
|
429
|
+
* }],
|
|
430
|
+
* destination: {
|
|
431
|
+
* server: "https://kubernetes.default.svc",
|
|
432
|
+
* namespace: "default",
|
|
433
|
+
* },
|
|
434
|
+
* },
|
|
435
|
+
* },
|
|
436
|
+
* },
|
|
437
|
+
* });
|
|
355
438
|
* // SCM Provider Generator - GitHub
|
|
356
439
|
* const scmGithub = new argocd.ApplicationSet("scm_github", {
|
|
357
440
|
* metadata: {
|
package/applicationSet.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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
5
|
exports.ApplicationSet = void 0;
|
|
@@ -189,6 +189,43 @@ const utilities = require("./utilities");
|
|
|
189
189
|
* },
|
|
190
190
|
* },
|
|
191
191
|
* });
|
|
192
|
+
* // List Generator with elements_yaml
|
|
193
|
+
* const listElementsYaml = new argocd.ApplicationSet("list_elements_yaml", {
|
|
194
|
+
* metadata: {
|
|
195
|
+
* name: "list-elements-yaml",
|
|
196
|
+
* },
|
|
197
|
+
* spec: {
|
|
198
|
+
* generators: [{
|
|
199
|
+
* lists: [{
|
|
200
|
+
* elementsYaml: `- cluster: engineering-dev
|
|
201
|
+
* url: https://kubernetes.default.svc
|
|
202
|
+
* environment: development
|
|
203
|
+
* - cluster: engineering-prod
|
|
204
|
+
* url: https://kubernetes.default.svc
|
|
205
|
+
* environment: production
|
|
206
|
+
* foo: bar
|
|
207
|
+
* `,
|
|
208
|
+
* }],
|
|
209
|
+
* }],
|
|
210
|
+
* template: {
|
|
211
|
+
* metadata: {
|
|
212
|
+
* name: "{{cluster}}-guestbook",
|
|
213
|
+
* },
|
|
214
|
+
* spec: {
|
|
215
|
+
* project: "my-project",
|
|
216
|
+
* sources: [{
|
|
217
|
+
* repoUrl: "https://github.com/argoproj/argo-cd.git",
|
|
218
|
+
* targetRevision: "HEAD",
|
|
219
|
+
* path: "applicationset/examples/list-generator/guestbook/{{cluster}}",
|
|
220
|
+
* }],
|
|
221
|
+
* destination: {
|
|
222
|
+
* server: "{{url}}",
|
|
223
|
+
* namespace: "guestbook",
|
|
224
|
+
* },
|
|
225
|
+
* },
|
|
226
|
+
* },
|
|
227
|
+
* },
|
|
228
|
+
* });
|
|
192
229
|
* // Matrix Generator
|
|
193
230
|
* const matrix = new argocd.ApplicationSet("matrix", {
|
|
194
231
|
* metadata: {
|
|
@@ -356,6 +393,52 @@ const utilities = require("./utilities");
|
|
|
356
393
|
* },
|
|
357
394
|
* },
|
|
358
395
|
* });
|
|
396
|
+
* // Pull Request Generator - Azure DevOps
|
|
397
|
+
* const prAzureDevops = new argocd.ApplicationSet("pr_azure_devops", {
|
|
398
|
+
* metadata: {
|
|
399
|
+
* name: "pr-azure-devops",
|
|
400
|
+
* },
|
|
401
|
+
* spec: {
|
|
402
|
+
* generators: [{
|
|
403
|
+
* pullRequests: [{
|
|
404
|
+
* azureDevops: {
|
|
405
|
+
* api: "https://dev.azure.com",
|
|
406
|
+
* organization: "myorg",
|
|
407
|
+
* project: "myproject",
|
|
408
|
+
* repo: "myrepository",
|
|
409
|
+
* labels: ["preview"],
|
|
410
|
+
* tokenRef: {
|
|
411
|
+
* secretName: "azure-devops-token",
|
|
412
|
+
* key: "token",
|
|
413
|
+
* },
|
|
414
|
+
* },
|
|
415
|
+
* }],
|
|
416
|
+
* }],
|
|
417
|
+
* template: {
|
|
418
|
+
* metadata: {
|
|
419
|
+
* name: "myapp-{{branch}}-{{number}}",
|
|
420
|
+
* },
|
|
421
|
+
* spec: {
|
|
422
|
+
* project: "default",
|
|
423
|
+
* sources: [{
|
|
424
|
+
* repoUrl: "https://github.com/myorg/myrepo.git",
|
|
425
|
+
* path: "kubernetes/",
|
|
426
|
+
* targetRevision: "{{head_sha}}",
|
|
427
|
+
* helm: {
|
|
428
|
+
* parameters: [{
|
|
429
|
+
* name: "image.tag",
|
|
430
|
+
* value: "pull-{{head_sha}}",
|
|
431
|
+
* }],
|
|
432
|
+
* },
|
|
433
|
+
* }],
|
|
434
|
+
* destination: {
|
|
435
|
+
* server: "https://kubernetes.default.svc",
|
|
436
|
+
* namespace: "default",
|
|
437
|
+
* },
|
|
438
|
+
* },
|
|
439
|
+
* },
|
|
440
|
+
* },
|
|
441
|
+
* });
|
|
359
442
|
* // SCM Provider Generator - GitHub
|
|
360
443
|
* const scmGithub = new argocd.ApplicationSet("scm_github", {
|
|
361
444
|
* metadata: {
|
|
@@ -482,7 +565,7 @@ class ApplicationSet extends pulumi.CustomResource {
|
|
|
482
565
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
483
566
|
*/
|
|
484
567
|
static get(name, id, state, opts) {
|
|
485
|
-
return new ApplicationSet(name, state,
|
|
568
|
+
return new ApplicationSet(name, state, { ...opts, id: id });
|
|
486
569
|
}
|
|
487
570
|
/**
|
|
488
571
|
* Returns true if the given object is an instance of ApplicationSet. This is designed to work even
|
|
@@ -499,19 +582,19 @@ class ApplicationSet extends pulumi.CustomResource {
|
|
|
499
582
|
opts = opts || {};
|
|
500
583
|
if (opts.id) {
|
|
501
584
|
const state = argsOrState;
|
|
502
|
-
resourceInputs["metadata"] = state
|
|
503
|
-
resourceInputs["spec"] = state
|
|
585
|
+
resourceInputs["metadata"] = state?.metadata;
|
|
586
|
+
resourceInputs["spec"] = state?.spec;
|
|
504
587
|
}
|
|
505
588
|
else {
|
|
506
589
|
const args = argsOrState;
|
|
507
|
-
if (
|
|
590
|
+
if (args?.metadata === undefined && !opts.urn) {
|
|
508
591
|
throw new Error("Missing required property 'metadata'");
|
|
509
592
|
}
|
|
510
|
-
if (
|
|
593
|
+
if (args?.spec === undefined && !opts.urn) {
|
|
511
594
|
throw new Error("Missing required property 'spec'");
|
|
512
595
|
}
|
|
513
|
-
resourceInputs["metadata"] = args
|
|
514
|
-
resourceInputs["spec"] = args
|
|
596
|
+
resourceInputs["metadata"] = args?.metadata;
|
|
597
|
+
resourceInputs["spec"] = args?.spec;
|
|
515
598
|
}
|
|
516
599
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
517
600
|
super(ApplicationSet.__pulumiType, name, resourceInputs, opts);
|
package/applicationSet.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"applicationSet.js","sourceRoot":"","sources":["../applicationSet.ts"],"names":[],"mappings":";AAAA,
|
|
1
|
+
{"version":3,"file":"applicationSet.js","sourceRoot":"","sources":["../applicationSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoiBG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACrE,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;;AAjEL,wCAkEC;AApDG,gBAAgB;AACO,2BAAY,GAAG,4CAA4C,CAAC"}
|
package/cluster.d.ts
CHANGED
|
@@ -121,9 +121,9 @@ import * as outputs from "./types/output";
|
|
|
121
121
|
*
|
|
122
122
|
* ## Import
|
|
123
123
|
*
|
|
124
|
-
*
|
|
124
|
+
* The `pulumi import` command can be used, for example:
|
|
125
125
|
*
|
|
126
|
-
*
|
|
126
|
+
* Cluster credentials can be imported using the server URL.
|
|
127
127
|
*
|
|
128
128
|
* ```sh
|
|
129
129
|
* $ pulumi import argocd:index/cluster:Cluster mycluster https://mycluster.io:443
|
package/cluster.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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
5
|
exports.Cluster = void 0;
|
|
@@ -125,9 +125,9 @@ const utilities = require("./utilities");
|
|
|
125
125
|
*
|
|
126
126
|
* ## Import
|
|
127
127
|
*
|
|
128
|
-
*
|
|
128
|
+
* The `pulumi import` command can be used, for example:
|
|
129
129
|
*
|
|
130
|
-
*
|
|
130
|
+
* Cluster credentials can be imported using the server URL.
|
|
131
131
|
*
|
|
132
132
|
* ```sh
|
|
133
133
|
* $ pulumi import argocd:index/cluster:Cluster mycluster https://mycluster.io:443
|
|
@@ -144,7 +144,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
144
144
|
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
145
145
|
*/
|
|
146
146
|
static get(name, id, state, opts) {
|
|
147
|
-
return new Cluster(name, state,
|
|
147
|
+
return new Cluster(name, state, { ...opts, id: id });
|
|
148
148
|
}
|
|
149
149
|
/**
|
|
150
150
|
* Returns true if the given object is an instance of Cluster. This is designed to work even
|
|
@@ -161,27 +161,27 @@ class Cluster extends pulumi.CustomResource {
|
|
|
161
161
|
opts = opts || {};
|
|
162
162
|
if (opts.id) {
|
|
163
163
|
const state = argsOrState;
|
|
164
|
-
resourceInputs["config"] = state
|
|
165
|
-
resourceInputs["infos"] = state
|
|
166
|
-
resourceInputs["metadatas"] = state
|
|
167
|
-
resourceInputs["name"] = state
|
|
168
|
-
resourceInputs["namespaces"] = state
|
|
169
|
-
resourceInputs["project"] = state
|
|
170
|
-
resourceInputs["server"] = state
|
|
171
|
-
resourceInputs["shard"] = state
|
|
164
|
+
resourceInputs["config"] = state?.config;
|
|
165
|
+
resourceInputs["infos"] = state?.infos;
|
|
166
|
+
resourceInputs["metadatas"] = state?.metadatas;
|
|
167
|
+
resourceInputs["name"] = state?.name;
|
|
168
|
+
resourceInputs["namespaces"] = state?.namespaces;
|
|
169
|
+
resourceInputs["project"] = state?.project;
|
|
170
|
+
resourceInputs["server"] = state?.server;
|
|
171
|
+
resourceInputs["shard"] = state?.shard;
|
|
172
172
|
}
|
|
173
173
|
else {
|
|
174
174
|
const args = argsOrState;
|
|
175
|
-
if (
|
|
175
|
+
if (args?.config === undefined && !opts.urn) {
|
|
176
176
|
throw new Error("Missing required property 'config'");
|
|
177
177
|
}
|
|
178
|
-
resourceInputs["config"] = args
|
|
179
|
-
resourceInputs["metadatas"] = args
|
|
180
|
-
resourceInputs["name"] = args
|
|
181
|
-
resourceInputs["namespaces"] = args
|
|
182
|
-
resourceInputs["project"] = args
|
|
183
|
-
resourceInputs["server"] = args
|
|
184
|
-
resourceInputs["shard"] = args
|
|
178
|
+
resourceInputs["config"] = args?.config;
|
|
179
|
+
resourceInputs["metadatas"] = args?.metadatas;
|
|
180
|
+
resourceInputs["name"] = args?.name;
|
|
181
|
+
resourceInputs["namespaces"] = args?.namespaces;
|
|
182
|
+
resourceInputs["project"] = args?.project;
|
|
183
|
+
resourceInputs["server"] = args?.server;
|
|
184
|
+
resourceInputs["shard"] = args?.shard;
|
|
185
185
|
resourceInputs["infos"] = undefined /*out*/;
|
|
186
186
|
}
|
|
187
187
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/cluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../cluster.ts"],"names":[],"mappings":";AAAA,
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../cluster.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+HG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IA2CD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;SAC1C;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,IAAI,IAAI,EAAE,MAAM,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzC,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC/C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AAlGL,0BAmGC;AArFG,gBAAgB;AACO,oBAAY,GAAG,8BAA8B,CAAC"}
|
package/config/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// *** WARNING: this file was generated by
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
5
|
if (k2 === undefined) k2 = k;
|
package/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;AAEjF,kBAAkB;AAClB,yCAAuB"}
|