@pulumi/github 6.12.0-alpha.1770156575 → 6.12.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/actionsEnvironmentSecret.d.ts +45 -5
- package/actionsEnvironmentSecret.js +15 -3
- package/actionsEnvironmentSecret.js.map +1 -1
- package/actionsEnvironmentVariable.d.ts +29 -18
- package/actionsEnvironmentVariable.js +16 -11
- package/actionsEnvironmentVariable.js.map +1 -1
- package/actionsOrganizationPermissions.d.ts +12 -0
- package/actionsOrganizationPermissions.js +2 -0
- package/actionsOrganizationPermissions.js.map +1 -1
- package/actionsOrganizationSecret.d.ts +67 -25
- package/actionsOrganizationSecret.js +8 -6
- package/actionsOrganizationSecret.js.map +1 -1
- package/actionsOrganizationSecretRepositories.d.ts +22 -14
- package/actionsOrganizationSecretRepositories.js +16 -8
- package/actionsOrganizationSecretRepositories.js.map +1 -1
- package/actionsOrganizationSecretRepository.d.ts +22 -14
- package/actionsOrganizationSecretRepository.js +16 -8
- package/actionsOrganizationSecretRepository.js.map +1 -1
- package/actionsOrganizationVariable.d.ts +20 -21
- package/actionsOrganizationVariable.js +4 -2
- package/actionsOrganizationVariable.js.map +1 -1
- package/actionsOrganizationVariableRepositories.d.ts +97 -0
- package/actionsOrganizationVariableRepositories.js +94 -0
- package/actionsOrganizationVariableRepositories.js.map +1 -0
- package/actionsOrganizationVariableRepository.d.ts +97 -0
- package/actionsOrganizationVariableRepository.js +94 -0
- package/actionsOrganizationVariableRepository.js.map +1 -0
- package/actionsRepositoryPermissions.d.ts +12 -0
- package/actionsRepositoryPermissions.js +2 -0
- package/actionsRepositoryPermissions.js.map +1 -1
- package/actionsSecret.d.ts +66 -19
- package/actionsSecret.js +10 -6
- package/actionsSecret.js.map +1 -1
- package/actionsVariable.d.ts +25 -15
- package/actionsVariable.js +6 -2
- package/actionsVariable.js.map +1 -1
- package/appInstallationRepositories.d.ts +3 -3
- package/appInstallationRepositories.js +3 -3
- package/appInstallationRepository.d.ts +3 -3
- package/appInstallationRepository.js +3 -3
- package/dependabotOrganizationSecret.d.ts +46 -27
- package/dependabotOrganizationSecret.js +8 -8
- package/dependabotOrganizationSecret.js.map +1 -1
- package/dependabotOrganizationSecretRepositories.d.ts +21 -18
- package/dependabotOrganizationSecretRepositories.js +15 -12
- package/dependabotOrganizationSecretRepositories.js.map +1 -1
- package/dependabotOrganizationSecretRepository.d.ts +97 -0
- package/dependabotOrganizationSecretRepository.js +94 -0
- package/dependabotOrganizationSecretRepository.js.map +1 -0
- package/dependabotSecret.d.ts +51 -19
- package/dependabotSecret.js +10 -6
- package/dependabotSecret.js.map +1 -1
- package/emuGroupMapping.d.ts +20 -2
- package/emuGroupMapping.js +8 -2
- package/emuGroupMapping.js.map +1 -1
- package/getReleaseAsset.d.ts +212 -0
- package/getReleaseAsset.js +142 -0
- package/getReleaseAsset.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +23 -5
- package/index.js.map +1 -1
- package/organizationRuleset.d.ts +4 -7
- package/organizationRuleset.js +1 -4
- package/organizationRuleset.js.map +1 -1
- package/package.json +2 -2
- package/repository.d.ts +16 -12
- package/repository.js +1 -3
- package/repository.js.map +1 -1
- package/repositoryRuleset.d.ts +3 -3
- package/types/input.d.ts +67 -5
- package/types/output.d.ts +69 -7
|
@@ -0,0 +1,94 @@
|
|
|
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.ActionsOrganizationVariableRepositories = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource allows you to manage the repositories allowed to access an actions variable within your GitHub organization.
|
|
10
|
+
* You must have write access to an organization variable to use this resource.
|
|
11
|
+
*
|
|
12
|
+
* This resource is only applicable when `visibility` of the existing organization variable has been set to `selected`.
|
|
13
|
+
*
|
|
14
|
+
* ## Example Usage
|
|
15
|
+
*
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
+
* import * as github from "@pulumi/github";
|
|
19
|
+
*
|
|
20
|
+
* const example = new github.ActionsOrganizationVariable("example", {
|
|
21
|
+
* variableName: "myvariable",
|
|
22
|
+
* plaintextValue: "foo",
|
|
23
|
+
* visibility: "selected",
|
|
24
|
+
* });
|
|
25
|
+
* const exampleRepository = new github.Repository("example", {
|
|
26
|
+
* name: "myrepo",
|
|
27
|
+
* visibility: "public",
|
|
28
|
+
* });
|
|
29
|
+
* const exampleActionsOrganizationVariableRepositories = new github.ActionsOrganizationVariableRepositories("example", {
|
|
30
|
+
* variableName: example.name,
|
|
31
|
+
* selectedRepositoryIds: [exampleRepository.repoId],
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* ## Import
|
|
36
|
+
*
|
|
37
|
+
* ### Import Command
|
|
38
|
+
*
|
|
39
|
+
* The following command imports the repositories able to access the actions organization variable named `myvariable` to a `github_actions_organization_variable_repositories` resource named `example`.
|
|
40
|
+
*
|
|
41
|
+
* ```sh
|
|
42
|
+
* $ pulumi import github:index/actionsOrganizationVariableRepositories:ActionsOrganizationVariableRepositories example myvariable
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
class ActionsOrganizationVariableRepositories extends pulumi.CustomResource {
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing ActionsOrganizationVariableRepositories resource's state with the given name, ID, and optional extra
|
|
48
|
+
* properties used to qualify the lookup.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resulting resource.
|
|
51
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
+
* @param state Any extra arguments used during the lookup.
|
|
53
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
+
*/
|
|
55
|
+
static get(name, id, state, opts) {
|
|
56
|
+
return new ActionsOrganizationVariableRepositories(name, state, { ...opts, id: id });
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of ActionsOrganizationVariableRepositories. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj) {
|
|
63
|
+
if (obj === undefined || obj === null) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
return obj['__pulumiType'] === ActionsOrganizationVariableRepositories.__pulumiType;
|
|
67
|
+
}
|
|
68
|
+
constructor(name, argsOrState, opts) {
|
|
69
|
+
let resourceInputs = {};
|
|
70
|
+
opts = opts || {};
|
|
71
|
+
if (opts.id) {
|
|
72
|
+
const state = argsOrState;
|
|
73
|
+
resourceInputs["selectedRepositoryIds"] = state?.selectedRepositoryIds;
|
|
74
|
+
resourceInputs["variableName"] = state?.variableName;
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
const args = argsOrState;
|
|
78
|
+
if (args?.selectedRepositoryIds === undefined && !opts.urn) {
|
|
79
|
+
throw new Error("Missing required property 'selectedRepositoryIds'");
|
|
80
|
+
}
|
|
81
|
+
if (args?.variableName === undefined && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'variableName'");
|
|
83
|
+
}
|
|
84
|
+
resourceInputs["selectedRepositoryIds"] = args?.selectedRepositoryIds;
|
|
85
|
+
resourceInputs["variableName"] = args?.variableName;
|
|
86
|
+
}
|
|
87
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
88
|
+
super(ActionsOrganizationVariableRepositories.__pulumiType, name, resourceInputs, opts);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.ActionsOrganizationVariableRepositories = ActionsOrganizationVariableRepositories;
|
|
92
|
+
/** @internal */
|
|
93
|
+
ActionsOrganizationVariableRepositories.__pulumiType = 'github:index/actionsOrganizationVariableRepositories:ActionsOrganizationVariableRepositories';
|
|
94
|
+
//# sourceMappingURL=actionsOrganizationVariableRepositories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actionsOrganizationVariableRepositories.js","sourceRoot":"","sources":["../actionsOrganizationVariableRepositories.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAa,uCAAwC,SAAQ,MAAM,CAAC,cAAc;IAC9E;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoD,EAAE,IAAmC;QAClJ,OAAO,IAAI,uCAAuC,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC9F,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,uCAAuC,CAAC,YAAY,CAAC;IACxF,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAwG,EAAE,IAAmC;QACnK,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuE,CAAC;YACtF,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;SACxD;aAAM;YACH,MAAM,IAAI,GAAG,WAAsE,CAAC;YACpF,IAAI,IAAI,EAAE,qBAAqB,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;aACxE;YACD,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;SACvD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,uCAAuC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5F,CAAC;;AAjEL,0FAkEC;AApDG,gBAAgB;AACO,oDAAY,GAAG,8FAA8F,CAAC"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource adds permission for a repository to use an actions variables within your GitHub organization.
|
|
4
|
+
* You must have write access to an organization variable to use this resource.
|
|
5
|
+
*
|
|
6
|
+
* This resource is only applicable when `visibility` of the existing organization variable has been set to `selected`.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as github from "@pulumi/github";
|
|
13
|
+
*
|
|
14
|
+
* const example = new github.ActionsOrganizationVariable("example", {
|
|
15
|
+
* variableName: "myvariable",
|
|
16
|
+
* plaintextValue: "foo",
|
|
17
|
+
* visibility: "selected",
|
|
18
|
+
* });
|
|
19
|
+
* const exampleRepository = new github.Repository("example", {
|
|
20
|
+
* name: "myrepo",
|
|
21
|
+
* visibility: "public",
|
|
22
|
+
* });
|
|
23
|
+
* const exampleActionsOrganizationVariableRepository = new github.ActionsOrganizationVariableRepository("example", {
|
|
24
|
+
* variableName: example.name,
|
|
25
|
+
* repositoryId: exampleRepository.repoId,
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ## Import
|
|
30
|
+
*
|
|
31
|
+
* ### Import Command
|
|
32
|
+
*
|
|
33
|
+
* The following command imports the access of repository ID `123456` for the actions organization variable named `myvariable` to a `github_actions_organization_variable_repository` resource named `example`.
|
|
34
|
+
*
|
|
35
|
+
* ```sh
|
|
36
|
+
* $ pulumi import github:index/actionsOrganizationVariableRepository:ActionsOrganizationVariableRepository example myvariable:123456
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
export declare class ActionsOrganizationVariableRepository extends pulumi.CustomResource {
|
|
40
|
+
/**
|
|
41
|
+
* Get an existing ActionsOrganizationVariableRepository resource's state with the given name, ID, and optional extra
|
|
42
|
+
* properties used to qualify the lookup.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resulting resource.
|
|
45
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
+
* @param state Any extra arguments used during the lookup.
|
|
47
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
+
*/
|
|
49
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ActionsOrganizationVariableRepositoryState, opts?: pulumi.CustomResourceOptions): ActionsOrganizationVariableRepository;
|
|
50
|
+
/**
|
|
51
|
+
* Returns true if the given object is an instance of ActionsOrganizationVariableRepository. This is designed to work even
|
|
52
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
53
|
+
*/
|
|
54
|
+
static isInstance(obj: any): obj is ActionsOrganizationVariableRepository;
|
|
55
|
+
/**
|
|
56
|
+
* ID of the repository that should be able to access the variable.
|
|
57
|
+
*/
|
|
58
|
+
readonly repositoryId: pulumi.Output<number>;
|
|
59
|
+
/**
|
|
60
|
+
* Name of the actions organization variable.
|
|
61
|
+
*/
|
|
62
|
+
readonly variableName: pulumi.Output<string>;
|
|
63
|
+
/**
|
|
64
|
+
* Create a ActionsOrganizationVariableRepository resource with the given unique name, arguments, and options.
|
|
65
|
+
*
|
|
66
|
+
* @param name The _unique_ name of the resource.
|
|
67
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
68
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
69
|
+
*/
|
|
70
|
+
constructor(name: string, args: ActionsOrganizationVariableRepositoryArgs, opts?: pulumi.CustomResourceOptions);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Input properties used for looking up and filtering ActionsOrganizationVariableRepository resources.
|
|
74
|
+
*/
|
|
75
|
+
export interface ActionsOrganizationVariableRepositoryState {
|
|
76
|
+
/**
|
|
77
|
+
* ID of the repository that should be able to access the variable.
|
|
78
|
+
*/
|
|
79
|
+
repositoryId?: pulumi.Input<number>;
|
|
80
|
+
/**
|
|
81
|
+
* Name of the actions organization variable.
|
|
82
|
+
*/
|
|
83
|
+
variableName?: pulumi.Input<string>;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* The set of arguments for constructing a ActionsOrganizationVariableRepository resource.
|
|
87
|
+
*/
|
|
88
|
+
export interface ActionsOrganizationVariableRepositoryArgs {
|
|
89
|
+
/**
|
|
90
|
+
* ID of the repository that should be able to access the variable.
|
|
91
|
+
*/
|
|
92
|
+
repositoryId: pulumi.Input<number>;
|
|
93
|
+
/**
|
|
94
|
+
* Name of the actions organization variable.
|
|
95
|
+
*/
|
|
96
|
+
variableName: pulumi.Input<string>;
|
|
97
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
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.ActionsOrganizationVariableRepository = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource adds permission for a repository to use an actions variables within your GitHub organization.
|
|
10
|
+
* You must have write access to an organization variable to use this resource.
|
|
11
|
+
*
|
|
12
|
+
* This resource is only applicable when `visibility` of the existing organization variable has been set to `selected`.
|
|
13
|
+
*
|
|
14
|
+
* ## Example Usage
|
|
15
|
+
*
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
+
* import * as github from "@pulumi/github";
|
|
19
|
+
*
|
|
20
|
+
* const example = new github.ActionsOrganizationVariable("example", {
|
|
21
|
+
* variableName: "myvariable",
|
|
22
|
+
* plaintextValue: "foo",
|
|
23
|
+
* visibility: "selected",
|
|
24
|
+
* });
|
|
25
|
+
* const exampleRepository = new github.Repository("example", {
|
|
26
|
+
* name: "myrepo",
|
|
27
|
+
* visibility: "public",
|
|
28
|
+
* });
|
|
29
|
+
* const exampleActionsOrganizationVariableRepository = new github.ActionsOrganizationVariableRepository("example", {
|
|
30
|
+
* variableName: example.name,
|
|
31
|
+
* repositoryId: exampleRepository.repoId,
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* ## Import
|
|
36
|
+
*
|
|
37
|
+
* ### Import Command
|
|
38
|
+
*
|
|
39
|
+
* The following command imports the access of repository ID `123456` for the actions organization variable named `myvariable` to a `github_actions_organization_variable_repository` resource named `example`.
|
|
40
|
+
*
|
|
41
|
+
* ```sh
|
|
42
|
+
* $ pulumi import github:index/actionsOrganizationVariableRepository:ActionsOrganizationVariableRepository example myvariable:123456
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
class ActionsOrganizationVariableRepository extends pulumi.CustomResource {
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing ActionsOrganizationVariableRepository resource's state with the given name, ID, and optional extra
|
|
48
|
+
* properties used to qualify the lookup.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resulting resource.
|
|
51
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
+
* @param state Any extra arguments used during the lookup.
|
|
53
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
+
*/
|
|
55
|
+
static get(name, id, state, opts) {
|
|
56
|
+
return new ActionsOrganizationVariableRepository(name, state, { ...opts, id: id });
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of ActionsOrganizationVariableRepository. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj) {
|
|
63
|
+
if (obj === undefined || obj === null) {
|
|
64
|
+
return false;
|
|
65
|
+
}
|
|
66
|
+
return obj['__pulumiType'] === ActionsOrganizationVariableRepository.__pulumiType;
|
|
67
|
+
}
|
|
68
|
+
constructor(name, argsOrState, opts) {
|
|
69
|
+
let resourceInputs = {};
|
|
70
|
+
opts = opts || {};
|
|
71
|
+
if (opts.id) {
|
|
72
|
+
const state = argsOrState;
|
|
73
|
+
resourceInputs["repositoryId"] = state?.repositoryId;
|
|
74
|
+
resourceInputs["variableName"] = state?.variableName;
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
const args = argsOrState;
|
|
78
|
+
if (args?.repositoryId === undefined && !opts.urn) {
|
|
79
|
+
throw new Error("Missing required property 'repositoryId'");
|
|
80
|
+
}
|
|
81
|
+
if (args?.variableName === undefined && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'variableName'");
|
|
83
|
+
}
|
|
84
|
+
resourceInputs["repositoryId"] = args?.repositoryId;
|
|
85
|
+
resourceInputs["variableName"] = args?.variableName;
|
|
86
|
+
}
|
|
87
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
88
|
+
super(ActionsOrganizationVariableRepository.__pulumiType, name, resourceInputs, opts);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.ActionsOrganizationVariableRepository = ActionsOrganizationVariableRepository;
|
|
92
|
+
/** @internal */
|
|
93
|
+
ActionsOrganizationVariableRepository.__pulumiType = 'github:index/actionsOrganizationVariableRepository:ActionsOrganizationVariableRepository';
|
|
94
|
+
//# sourceMappingURL=actionsOrganizationVariableRepository.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"actionsOrganizationVariableRepository.js","sourceRoot":"","sources":["../actionsOrganizationVariableRepository.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAa,qCAAsC,SAAQ,MAAM,CAAC,cAAc;IAC5E;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkD,EAAE,IAAmC;QAChJ,OAAO,IAAI,qCAAqC,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5F,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,qCAAqC,CAAC,YAAY,CAAC;IACtF,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAoG,EAAE,IAAmC;QAC/J,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqE,CAAC;YACpF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;SACxD;aAAM;YACH,MAAM,IAAI,GAAG,WAAoE,CAAC;YAClF,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;SACvD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,qCAAqC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1F,CAAC;;AAjEL,sFAkEC;AApDG,gBAAgB;AACO,kDAAY,GAAG,0FAA0F,CAAC"}
|
|
@@ -66,6 +66,10 @@ export declare class ActionsRepositoryPermissions extends pulumi.CustomResource
|
|
|
66
66
|
* The GitHub repository
|
|
67
67
|
*/
|
|
68
68
|
readonly repository: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Whether pinning to a specific SHA is required for all actions and reusable workflows in a repository.
|
|
71
|
+
*/
|
|
72
|
+
readonly shaPinningRequired: pulumi.Output<boolean>;
|
|
69
73
|
/**
|
|
70
74
|
* Create a ActionsRepositoryPermissions resource with the given unique name, arguments, and options.
|
|
71
75
|
*
|
|
@@ -95,6 +99,10 @@ export interface ActionsRepositoryPermissionsState {
|
|
|
95
99
|
* The GitHub repository
|
|
96
100
|
*/
|
|
97
101
|
repository?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Whether pinning to a specific SHA is required for all actions and reusable workflows in a repository.
|
|
104
|
+
*/
|
|
105
|
+
shaPinningRequired?: pulumi.Input<boolean>;
|
|
98
106
|
}
|
|
99
107
|
/**
|
|
100
108
|
* The set of arguments for constructing a ActionsRepositoryPermissions resource.
|
|
@@ -116,4 +124,8 @@ export interface ActionsRepositoryPermissionsArgs {
|
|
|
116
124
|
* The GitHub repository
|
|
117
125
|
*/
|
|
118
126
|
repository: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* Whether pinning to a specific SHA is required for all actions and reusable workflows in a repository.
|
|
129
|
+
*/
|
|
130
|
+
shaPinningRequired?: pulumi.Input<boolean>;
|
|
119
131
|
}
|
|
@@ -70,6 +70,7 @@ class ActionsRepositoryPermissions extends pulumi.CustomResource {
|
|
|
70
70
|
resourceInputs["allowedActionsConfig"] = state?.allowedActionsConfig;
|
|
71
71
|
resourceInputs["enabled"] = state?.enabled;
|
|
72
72
|
resourceInputs["repository"] = state?.repository;
|
|
73
|
+
resourceInputs["shaPinningRequired"] = state?.shaPinningRequired;
|
|
73
74
|
}
|
|
74
75
|
else {
|
|
75
76
|
const args = argsOrState;
|
|
@@ -80,6 +81,7 @@ class ActionsRepositoryPermissions extends pulumi.CustomResource {
|
|
|
80
81
|
resourceInputs["allowedActionsConfig"] = args?.allowedActionsConfig;
|
|
81
82
|
resourceInputs["enabled"] = args?.enabled;
|
|
82
83
|
resourceInputs["repository"] = args?.repository;
|
|
84
|
+
resourceInputs["shaPinningRequired"] = args?.shaPinningRequired;
|
|
83
85
|
}
|
|
84
86
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
85
87
|
super(ActionsRepositoryPermissions.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actionsRepositoryPermissions.js","sourceRoot":"","sources":["../actionsRepositoryPermissions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;
|
|
1
|
+
{"version":3,"file":"actionsRepositoryPermissions.js","sourceRoot":"","sources":["../actionsRepositoryPermissions.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnF,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,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,EAAE,oBAAoB,CAAC;YACrE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,EAAE,kBAAkB,CAAC;SACpE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,UAAU,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC7C,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,EAAE,oBAAoB,CAAC;YACpE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,EAAE,kBAAkB,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAhFL,oEAiFC;AAnEG,gBAAgB;AACO,yCAAY,GAAG,wEAAwE,CAAC"}
|
package/actionsSecret.d.ts
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* ## Example Usage
|
|
4
|
-
*
|
|
5
3
|
* ## Import
|
|
6
4
|
*
|
|
7
|
-
*
|
|
5
|
+
* ### Import Command
|
|
6
|
+
*
|
|
7
|
+
* The following command imports a GitHub actions secret named `mysecret` for the repo `myrepo` to a `github_actions_secret` resource named `example`.
|
|
8
8
|
*
|
|
9
9
|
* ```sh
|
|
10
|
-
* $ pulumi import github:index/actionsSecret:ActionsSecret
|
|
10
|
+
* $ pulumi import github:index/actionsSecret:ActionsSecret example myrepo:mysecret
|
|
11
11
|
* ```
|
|
12
|
-
* NOTE: the implementation is limited in that it won't fetch the value of the
|
|
13
|
-
* `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround.
|
|
14
12
|
*/
|
|
15
13
|
export declare class ActionsSecret extends pulumi.CustomResource {
|
|
16
14
|
/**
|
|
@@ -29,28 +27,47 @@ export declare class ActionsSecret extends pulumi.CustomResource {
|
|
|
29
27
|
*/
|
|
30
28
|
static isInstance(obj: any): obj is ActionsSecret;
|
|
31
29
|
/**
|
|
32
|
-
* Date
|
|
30
|
+
* Date the secret was created.
|
|
33
31
|
*/
|
|
34
32
|
readonly createdAt: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* (Optional) This is ignored as drift detection is built into the resource.
|
|
35
|
+
*
|
|
36
|
+
* > **Note**: One of either `encryptedValue` or `plaintextValue` must be specified.
|
|
37
|
+
*
|
|
38
|
+
* @deprecated This is no longer required and will be removed in a future release. Drift detection is now always performed, and external changes will result in the secret being updated to match the Terraform configuration. If you want to ignore external changes, you can use the `lifecycle` block with `ignoreChanges` on the `remoteUpdatedAt` field.
|
|
39
|
+
*/
|
|
35
40
|
readonly destroyOnDrift: pulumi.Output<boolean | undefined>;
|
|
36
41
|
/**
|
|
37
42
|
* Encrypted value of the secret using the GitHub public key in Base64 format.
|
|
38
43
|
*/
|
|
39
44
|
readonly encryptedValue: pulumi.Output<string | undefined>;
|
|
40
45
|
/**
|
|
41
|
-
*
|
|
46
|
+
* ID of the public key used to encrypt the secret. This should be provided when setting `encryptedValue`; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with `plaintextValue`.
|
|
47
|
+
*/
|
|
48
|
+
readonly keyId: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* Plaintext value of the secret to be encrypted.
|
|
42
51
|
*/
|
|
43
52
|
readonly plaintextValue: pulumi.Output<string | undefined>;
|
|
44
53
|
/**
|
|
45
|
-
*
|
|
54
|
+
* Date the secret was last updated in GitHub.
|
|
55
|
+
*/
|
|
56
|
+
readonly remoteUpdatedAt: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* Name of the repository.
|
|
46
59
|
*/
|
|
47
60
|
readonly repository: pulumi.Output<string>;
|
|
48
61
|
/**
|
|
49
|
-
*
|
|
62
|
+
* ID of the repository.
|
|
63
|
+
*/
|
|
64
|
+
readonly repositoryId: pulumi.Output<number>;
|
|
65
|
+
/**
|
|
66
|
+
* Name of the secret.
|
|
50
67
|
*/
|
|
51
68
|
readonly secretName: pulumi.Output<string>;
|
|
52
69
|
/**
|
|
53
|
-
* Date
|
|
70
|
+
* Date the secret was last updated by the provider.
|
|
54
71
|
*/
|
|
55
72
|
readonly updatedAt: pulumi.Output<string>;
|
|
56
73
|
/**
|
|
@@ -67,28 +84,47 @@ export declare class ActionsSecret extends pulumi.CustomResource {
|
|
|
67
84
|
*/
|
|
68
85
|
export interface ActionsSecretState {
|
|
69
86
|
/**
|
|
70
|
-
* Date
|
|
87
|
+
* Date the secret was created.
|
|
71
88
|
*/
|
|
72
89
|
createdAt?: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* (Optional) This is ignored as drift detection is built into the resource.
|
|
92
|
+
*
|
|
93
|
+
* > **Note**: One of either `encryptedValue` or `plaintextValue` must be specified.
|
|
94
|
+
*
|
|
95
|
+
* @deprecated This is no longer required and will be removed in a future release. Drift detection is now always performed, and external changes will result in the secret being updated to match the Terraform configuration. If you want to ignore external changes, you can use the `lifecycle` block with `ignoreChanges` on the `remoteUpdatedAt` field.
|
|
96
|
+
*/
|
|
73
97
|
destroyOnDrift?: pulumi.Input<boolean>;
|
|
74
98
|
/**
|
|
75
99
|
* Encrypted value of the secret using the GitHub public key in Base64 format.
|
|
76
100
|
*/
|
|
77
101
|
encryptedValue?: pulumi.Input<string>;
|
|
78
102
|
/**
|
|
79
|
-
*
|
|
103
|
+
* ID of the public key used to encrypt the secret. This should be provided when setting `encryptedValue`; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with `plaintextValue`.
|
|
104
|
+
*/
|
|
105
|
+
keyId?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* Plaintext value of the secret to be encrypted.
|
|
80
108
|
*/
|
|
81
109
|
plaintextValue?: pulumi.Input<string>;
|
|
82
110
|
/**
|
|
83
|
-
*
|
|
111
|
+
* Date the secret was last updated in GitHub.
|
|
112
|
+
*/
|
|
113
|
+
remoteUpdatedAt?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* Name of the repository.
|
|
84
116
|
*/
|
|
85
117
|
repository?: pulumi.Input<string>;
|
|
86
118
|
/**
|
|
87
|
-
*
|
|
119
|
+
* ID of the repository.
|
|
120
|
+
*/
|
|
121
|
+
repositoryId?: pulumi.Input<number>;
|
|
122
|
+
/**
|
|
123
|
+
* Name of the secret.
|
|
88
124
|
*/
|
|
89
125
|
secretName?: pulumi.Input<string>;
|
|
90
126
|
/**
|
|
91
|
-
* Date
|
|
127
|
+
* Date the secret was last updated by the provider.
|
|
92
128
|
*/
|
|
93
129
|
updatedAt?: pulumi.Input<string>;
|
|
94
130
|
}
|
|
@@ -96,21 +132,32 @@ export interface ActionsSecretState {
|
|
|
96
132
|
* The set of arguments for constructing a ActionsSecret resource.
|
|
97
133
|
*/
|
|
98
134
|
export interface ActionsSecretArgs {
|
|
135
|
+
/**
|
|
136
|
+
* (Optional) This is ignored as drift detection is built into the resource.
|
|
137
|
+
*
|
|
138
|
+
* > **Note**: One of either `encryptedValue` or `plaintextValue` must be specified.
|
|
139
|
+
*
|
|
140
|
+
* @deprecated This is no longer required and will be removed in a future release. Drift detection is now always performed, and external changes will result in the secret being updated to match the Terraform configuration. If you want to ignore external changes, you can use the `lifecycle` block with `ignoreChanges` on the `remoteUpdatedAt` field.
|
|
141
|
+
*/
|
|
99
142
|
destroyOnDrift?: pulumi.Input<boolean>;
|
|
100
143
|
/**
|
|
101
144
|
* Encrypted value of the secret using the GitHub public key in Base64 format.
|
|
102
145
|
*/
|
|
103
146
|
encryptedValue?: pulumi.Input<string>;
|
|
104
147
|
/**
|
|
105
|
-
*
|
|
148
|
+
* ID of the public key used to encrypt the secret. This should be provided when setting `encryptedValue`; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with `plaintextValue`.
|
|
149
|
+
*/
|
|
150
|
+
keyId?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* Plaintext value of the secret to be encrypted.
|
|
106
153
|
*/
|
|
107
154
|
plaintextValue?: pulumi.Input<string>;
|
|
108
155
|
/**
|
|
109
|
-
* Name of the repository
|
|
156
|
+
* Name of the repository.
|
|
110
157
|
*/
|
|
111
158
|
repository: pulumi.Input<string>;
|
|
112
159
|
/**
|
|
113
|
-
* Name of the secret
|
|
160
|
+
* Name of the secret.
|
|
114
161
|
*/
|
|
115
162
|
secretName: pulumi.Input<string>;
|
|
116
163
|
}
|
package/actionsSecret.js
CHANGED
|
@@ -6,17 +6,15 @@ exports.ActionsSecret = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* ## Example Usage
|
|
10
|
-
*
|
|
11
9
|
* ## Import
|
|
12
10
|
*
|
|
13
|
-
*
|
|
11
|
+
* ### Import Command
|
|
12
|
+
*
|
|
13
|
+
* The following command imports a GitHub actions secret named `mysecret` for the repo `myrepo` to a `github_actions_secret` resource named `example`.
|
|
14
14
|
*
|
|
15
15
|
* ```sh
|
|
16
|
-
* $ pulumi import github:index/actionsSecret:ActionsSecret
|
|
16
|
+
* $ pulumi import github:index/actionsSecret:ActionsSecret example myrepo:mysecret
|
|
17
17
|
* ```
|
|
18
|
-
* NOTE: the implementation is limited in that it won't fetch the value of the
|
|
19
|
-
* `plaintext_value` or `encrypted_value` fields when importing. You may need to ignore changes for these as a workaround.
|
|
20
18
|
*/
|
|
21
19
|
class ActionsSecret extends pulumi.CustomResource {
|
|
22
20
|
/**
|
|
@@ -49,8 +47,11 @@ class ActionsSecret extends pulumi.CustomResource {
|
|
|
49
47
|
resourceInputs["createdAt"] = state?.createdAt;
|
|
50
48
|
resourceInputs["destroyOnDrift"] = state?.destroyOnDrift;
|
|
51
49
|
resourceInputs["encryptedValue"] = state?.encryptedValue;
|
|
50
|
+
resourceInputs["keyId"] = state?.keyId;
|
|
52
51
|
resourceInputs["plaintextValue"] = state?.plaintextValue;
|
|
52
|
+
resourceInputs["remoteUpdatedAt"] = state?.remoteUpdatedAt;
|
|
53
53
|
resourceInputs["repository"] = state?.repository;
|
|
54
|
+
resourceInputs["repositoryId"] = state?.repositoryId;
|
|
54
55
|
resourceInputs["secretName"] = state?.secretName;
|
|
55
56
|
resourceInputs["updatedAt"] = state?.updatedAt;
|
|
56
57
|
}
|
|
@@ -64,10 +65,13 @@ class ActionsSecret extends pulumi.CustomResource {
|
|
|
64
65
|
}
|
|
65
66
|
resourceInputs["destroyOnDrift"] = args?.destroyOnDrift;
|
|
66
67
|
resourceInputs["encryptedValue"] = args?.encryptedValue ? pulumi.secret(args.encryptedValue) : undefined;
|
|
68
|
+
resourceInputs["keyId"] = args?.keyId;
|
|
67
69
|
resourceInputs["plaintextValue"] = args?.plaintextValue ? pulumi.secret(args.plaintextValue) : undefined;
|
|
68
70
|
resourceInputs["repository"] = args?.repository;
|
|
69
71
|
resourceInputs["secretName"] = args?.secretName;
|
|
70
72
|
resourceInputs["createdAt"] = undefined /*out*/;
|
|
73
|
+
resourceInputs["remoteUpdatedAt"] = undefined /*out*/;
|
|
74
|
+
resourceInputs["repositoryId"] = undefined /*out*/;
|
|
71
75
|
resourceInputs["updatedAt"] = undefined /*out*/;
|
|
72
76
|
}
|
|
73
77
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/actionsSecret.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actionsSecret.js","sourceRoot":"","sources":["../actionsSecret.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"actionsSecret.js","sourceRoot":"","sources":["../actionsSecret.ts"],"names":[],"mappings":"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"}
|