published on Wednesday, Apr 29, 2026 by Pulumi
published on Wednesday, Apr 29, 2026 by Pulumi
This resource allows you to create and manage GitHub Dependabot secrets within your GitHub organization. You must have write access to a repository to use this resource.
Secret values are encrypted using the Go ‘/crypto/box’ module which is interoperable with libsodium. Libsodium is used by GitHub to decrypt secret values.
For the purposes of security, the contents of the value field have been marked as sensitive to Terraform,
but it is important to note that this does not hide it from state files. You should treat state as sensitive always.
It is also advised that you do not store plaintext values in your code but rather populate the valueEncrypted
using fields from a resource, data source or variable as, while encrypted in state, these will be easily accessible
in your code. See below for an example of this abstraction.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
const examplePlaintext = new github.DependabotOrganizationSecret("example_plaintext", {
secretName: "example_secret_name",
visibility: "all",
value: someSecretString,
});
const exampleSecret = new github.DependabotOrganizationSecret("example_secret", {
secretName: "example_secret_name",
visibility: "all",
valueEncrypted: someEncryptedSecretString,
});
import pulumi
import pulumi_github as github
example_plaintext = github.DependabotOrganizationSecret("example_plaintext",
secret_name="example_secret_name",
visibility="all",
value=some_secret_string)
example_secret = github.DependabotOrganizationSecret("example_secret",
secret_name="example_secret_name",
visibility="all",
value_encrypted=some_encrypted_secret_string)
package main
import (
"github.com/pulumi/pulumi-github/sdk/v6/go/github"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := github.NewDependabotOrganizationSecret(ctx, "example_plaintext", &github.DependabotOrganizationSecretArgs{
SecretName: pulumi.String("example_secret_name"),
Visibility: pulumi.String("all"),
Value: pulumi.Any(someSecretString),
})
if err != nil {
return err
}
_, err = github.NewDependabotOrganizationSecret(ctx, "example_secret", &github.DependabotOrganizationSecretArgs{
SecretName: pulumi.String("example_secret_name"),
Visibility: pulumi.String("all"),
ValueEncrypted: pulumi.Any(someEncryptedSecretString),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Github = Pulumi.Github;
return await Deployment.RunAsync(() =>
{
var examplePlaintext = new Github.Index.DependabotOrganizationSecret("example_plaintext", new()
{
SecretName = "example_secret_name",
Visibility = "all",
Value = someSecretString,
});
var exampleSecret = new Github.Index.DependabotOrganizationSecret("example_secret", new()
{
SecretName = "example_secret_name",
Visibility = "all",
ValueEncrypted = someEncryptedSecretString,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.github.DependabotOrganizationSecret;
import com.pulumi.github.DependabotOrganizationSecretArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var examplePlaintext = new DependabotOrganizationSecret("examplePlaintext", DependabotOrganizationSecretArgs.builder()
.secretName("example_secret_name")
.visibility("all")
.value(someSecretString)
.build());
var exampleSecret = new DependabotOrganizationSecret("exampleSecret", DependabotOrganizationSecretArgs.builder()
.secretName("example_secret_name")
.visibility("all")
.valueEncrypted(someEncryptedSecretString)
.build());
}
}
resources:
examplePlaintext:
type: github:DependabotOrganizationSecret
name: example_plaintext
properties:
secretName: example_secret_name
visibility: all
value: ${someSecretString}
exampleSecret:
type: github:DependabotOrganizationSecret
name: example_secret
properties:
secretName: example_secret_name
visibility: all
valueEncrypted: ${someEncryptedSecretString}
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
const repo = github.getRepository({
fullName: "my-org/repo",
});
const examplePlaintext = new github.DependabotOrganizationSecret("example_plaintext", {
secretName: "example_secret_name",
visibility: "selected",
value: someSecretString,
selectedRepositoryIds: [repo.then(repo => repo.repoId)],
});
const exampleEncrypted = new github.DependabotOrganizationSecret("example_encrypted", {
secretName: "example_secret_name",
visibility: "selected",
valueEncrypted: someEncryptedSecretString,
selectedRepositoryIds: [repo.then(repo => repo.repoId)],
});
import pulumi
import pulumi_github as github
repo = github.get_repository(full_name="my-org/repo")
example_plaintext = github.DependabotOrganizationSecret("example_plaintext",
secret_name="example_secret_name",
visibility="selected",
value=some_secret_string,
selected_repository_ids=[repo.repo_id])
example_encrypted = github.DependabotOrganizationSecret("example_encrypted",
secret_name="example_secret_name",
visibility="selected",
value_encrypted=some_encrypted_secret_string,
selected_repository_ids=[repo.repo_id])
package main
import (
"github.com/pulumi/pulumi-github/sdk/v6/go/github"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
repo, err := github.GetRepository(ctx, &github.LookupRepositoryArgs{
FullName: pulumi.StringRef("my-org/repo"),
}, nil)
if err != nil {
return err
}
_, err = github.NewDependabotOrganizationSecret(ctx, "example_plaintext", &github.DependabotOrganizationSecretArgs{
SecretName: pulumi.String("example_secret_name"),
Visibility: pulumi.String("selected"),
Value: pulumi.Any(someSecretString),
SelectedRepositoryIds: pulumi.IntArray{
pulumi.Int(pulumi.Int(repo.RepoId)),
},
})
if err != nil {
return err
}
_, err = github.NewDependabotOrganizationSecret(ctx, "example_encrypted", &github.DependabotOrganizationSecretArgs{
SecretName: pulumi.String("example_secret_name"),
Visibility: pulumi.String("selected"),
ValueEncrypted: pulumi.Any(someEncryptedSecretString),
SelectedRepositoryIds: pulumi.IntArray{
pulumi.Int(pulumi.Int(repo.RepoId)),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Github = Pulumi.Github;
return await Deployment.RunAsync(() =>
{
var repo = Github.Index.GetRepository.Invoke(new()
{
FullName = "my-org/repo",
});
var examplePlaintext = new Github.Index.DependabotOrganizationSecret("example_plaintext", new()
{
SecretName = "example_secret_name",
Visibility = "selected",
Value = someSecretString,
SelectedRepositoryIds = new[]
{
repo.Apply(getRepositoryResult => getRepositoryResult.RepoId),
},
});
var exampleEncrypted = new Github.Index.DependabotOrganizationSecret("example_encrypted", new()
{
SecretName = "example_secret_name",
Visibility = "selected",
ValueEncrypted = someEncryptedSecretString,
SelectedRepositoryIds = new[]
{
repo.Apply(getRepositoryResult => getRepositoryResult.RepoId),
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.github.GithubFunctions;
import com.pulumi.github.inputs.GetRepositoryArgs;
import com.pulumi.github.DependabotOrganizationSecret;
import com.pulumi.github.DependabotOrganizationSecretArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var repo = GithubFunctions.getRepository(GetRepositoryArgs.builder()
.fullName("my-org/repo")
.build());
var examplePlaintext = new DependabotOrganizationSecret("examplePlaintext", DependabotOrganizationSecretArgs.builder()
.secretName("example_secret_name")
.visibility("selected")
.value(someSecretString)
.selectedRepositoryIds(repo.repoId())
.build());
var exampleEncrypted = new DependabotOrganizationSecret("exampleEncrypted", DependabotOrganizationSecretArgs.builder()
.secretName("example_secret_name")
.visibility("selected")
.valueEncrypted(someEncryptedSecretString)
.selectedRepositoryIds(repo.repoId())
.build());
}
}
resources:
examplePlaintext:
type: github:DependabotOrganizationSecret
name: example_plaintext
properties:
secretName: example_secret_name
visibility: selected
value: ${someSecretString}
selectedRepositoryIds:
- ${repo.repoId}
exampleEncrypted:
type: github:DependabotOrganizationSecret
name: example_encrypted
properties:
secretName: example_secret_name
visibility: selected
valueEncrypted: ${someEncryptedSecretString}
selectedRepositoryIds:
- ${repo.repoId}
variables:
repo:
fn::invoke:
function: github:getRepository
arguments:
fullName: my-org/repo
Import Command
The following command imports a GitHub Dependabot organization secret named mysecret to a github.DependabotOrganizationSecret resource named example.
$ pulumi import github:index/dependabotOrganizationSecret:DependabotOrganizationSecret example mysecret
Create DependabotOrganizationSecret Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DependabotOrganizationSecret(name: string, args: DependabotOrganizationSecretArgs, opts?: CustomResourceOptions);@overload
def DependabotOrganizationSecret(resource_name: str,
args: DependabotOrganizationSecretArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DependabotOrganizationSecret(resource_name: str,
opts: Optional[ResourceOptions] = None,
secret_name: Optional[str] = None,
visibility: Optional[str] = None,
encrypted_value: Optional[str] = None,
key_id: Optional[str] = None,
plaintext_value: Optional[str] = None,
selected_repository_ids: Optional[Sequence[int]] = None,
value: Optional[str] = None,
value_encrypted: Optional[str] = None)func NewDependabotOrganizationSecret(ctx *Context, name string, args DependabotOrganizationSecretArgs, opts ...ResourceOption) (*DependabotOrganizationSecret, error)public DependabotOrganizationSecret(string name, DependabotOrganizationSecretArgs args, CustomResourceOptions? opts = null)
public DependabotOrganizationSecret(String name, DependabotOrganizationSecretArgs args)
public DependabotOrganizationSecret(String name, DependabotOrganizationSecretArgs args, CustomResourceOptions options)
type: github:DependabotOrganizationSecret
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DependabotOrganizationSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DependabotOrganizationSecretArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DependabotOrganizationSecretArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DependabotOrganizationSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DependabotOrganizationSecretArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dependabotOrganizationSecretResource = new Github.DependabotOrganizationSecret("dependabotOrganizationSecretResource", new()
{
SecretName = "string",
Visibility = "string",
KeyId = "string",
Value = "string",
ValueEncrypted = "string",
});
example, err := github.NewDependabotOrganizationSecret(ctx, "dependabotOrganizationSecretResource", &github.DependabotOrganizationSecretArgs{
SecretName: pulumi.String("string"),
Visibility: pulumi.String("string"),
KeyId: pulumi.String("string"),
Value: pulumi.String("string"),
ValueEncrypted: pulumi.String("string"),
})
var dependabotOrganizationSecretResource = new DependabotOrganizationSecret("dependabotOrganizationSecretResource", DependabotOrganizationSecretArgs.builder()
.secretName("string")
.visibility("string")
.keyId("string")
.value("string")
.valueEncrypted("string")
.build());
dependabot_organization_secret_resource = github.DependabotOrganizationSecret("dependabotOrganizationSecretResource",
secret_name="string",
visibility="string",
key_id="string",
value="string",
value_encrypted="string")
const dependabotOrganizationSecretResource = new github.DependabotOrganizationSecret("dependabotOrganizationSecretResource", {
secretName: "string",
visibility: "string",
keyId: "string",
value: "string",
valueEncrypted: "string",
});
type: github:DependabotOrganizationSecret
properties:
keyId: string
secretName: string
value: string
valueEncrypted: string
visibility: string
DependabotOrganizationSecret Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DependabotOrganizationSecret resource accepts the following input properties:
- Secret
Name string - Name of the secret.
- Visibility string
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected. - Encrypted
Value string - (Optional) Please use
valueEncrypted. - Key
Id string - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - Plaintext
Value string - (Optional) Please use
value. - Selected
Repository List<int>Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- Value string
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - Value
Encrypted string - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue.
- Secret
Name string - Name of the secret.
- Visibility string
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected. - Encrypted
Value string - (Optional) Please use
valueEncrypted. - Key
Id string - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - Plaintext
Value string - (Optional) Please use
value. - Selected
Repository []intIds An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- Value string
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - Value
Encrypted string - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue.
- secret
Name String - Name of the secret.
- visibility String
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected. - encrypted
Value String - (Optional) Please use
valueEncrypted. - key
Id String - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext
Value String - (Optional) Please use
value. - selected
Repository List<Integer>Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- value String
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value
Encrypted String - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue.
- secret
Name string - Name of the secret.
- visibility string
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected. - encrypted
Value string - (Optional) Please use
valueEncrypted. - key
Id string - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext
Value string - (Optional) Please use
value. - selected
Repository number[]Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- value string
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value
Encrypted string - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue.
- secret_
name str - Name of the secret.
- visibility str
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected. - encrypted_
value str - (Optional) Please use
valueEncrypted. - key_
id str - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext_
value str - (Optional) Please use
value. - selected_
repository_ Sequence[int]ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- value str
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value_
encrypted str - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue.
- secret
Name String - Name of the secret.
- visibility String
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected. - encrypted
Value String - (Optional) Please use
valueEncrypted. - key
Id String - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext
Value String - (Optional) Please use
value. - selected
Repository List<Number>Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- value String
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value
Encrypted String - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue.
Outputs
All input properties are implicitly available as output properties. Additionally, the DependabotOrganizationSecret resource produces the following output properties:
- Created
At string - Date the secret was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Remote
Updated stringAt - Date the secret was last updated in GitHub.
- Updated
At string - Date the secret was last updated by the provider.
- Created
At string - Date the secret was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Remote
Updated stringAt - Date the secret was last updated in GitHub.
- Updated
At string - Date the secret was last updated by the provider.
- created
At String - Date the secret was created.
- id String
- The provider-assigned unique ID for this managed resource.
- remote
Updated StringAt - Date the secret was last updated in GitHub.
- updated
At String - Date the secret was last updated by the provider.
- created
At string - Date the secret was created.
- id string
- The provider-assigned unique ID for this managed resource.
- remote
Updated stringAt - Date the secret was last updated in GitHub.
- updated
At string - Date the secret was last updated by the provider.
- created_
at str - Date the secret was created.
- id str
- The provider-assigned unique ID for this managed resource.
- remote_
updated_ strat - Date the secret was last updated in GitHub.
- updated_
at str - Date the secret was last updated by the provider.
- created
At String - Date the secret was created.
- id String
- The provider-assigned unique ID for this managed resource.
- remote
Updated StringAt - Date the secret was last updated in GitHub.
- updated
At String - Date the secret was last updated by the provider.
Look up Existing DependabotOrganizationSecret Resource
Get an existing DependabotOrganizationSecret resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DependabotOrganizationSecretState, opts?: CustomResourceOptions): DependabotOrganizationSecret@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
encrypted_value: Optional[str] = None,
key_id: Optional[str] = None,
plaintext_value: Optional[str] = None,
remote_updated_at: Optional[str] = None,
secret_name: Optional[str] = None,
selected_repository_ids: Optional[Sequence[int]] = None,
updated_at: Optional[str] = None,
value: Optional[str] = None,
value_encrypted: Optional[str] = None,
visibility: Optional[str] = None) -> DependabotOrganizationSecretfunc GetDependabotOrganizationSecret(ctx *Context, name string, id IDInput, state *DependabotOrganizationSecretState, opts ...ResourceOption) (*DependabotOrganizationSecret, error)public static DependabotOrganizationSecret Get(string name, Input<string> id, DependabotOrganizationSecretState? state, CustomResourceOptions? opts = null)public static DependabotOrganizationSecret get(String name, Output<String> id, DependabotOrganizationSecretState state, CustomResourceOptions options)resources: _: type: github:DependabotOrganizationSecret get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Created
At string - Date the secret was created.
- Encrypted
Value string - (Optional) Please use
valueEncrypted. - Key
Id string - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - Plaintext
Value string - (Optional) Please use
value. - Remote
Updated stringAt - Date the secret was last updated in GitHub.
- Secret
Name string - Name of the secret.
- Selected
Repository List<int>Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- Updated
At string - Date the secret was last updated by the provider.
- Value string
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - Value
Encrypted string - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue. - Visibility string
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected.
- Created
At string - Date the secret was created.
- Encrypted
Value string - (Optional) Please use
valueEncrypted. - Key
Id string - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - Plaintext
Value string - (Optional) Please use
value. - Remote
Updated stringAt - Date the secret was last updated in GitHub.
- Secret
Name string - Name of the secret.
- Selected
Repository []intIds An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- Updated
At string - Date the secret was last updated by the provider.
- Value string
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - Value
Encrypted string - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue. - Visibility string
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected.
- created
At String - Date the secret was created.
- encrypted
Value String - (Optional) Please use
valueEncrypted. - key
Id String - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext
Value String - (Optional) Please use
value. - remote
Updated StringAt - Date the secret was last updated in GitHub.
- secret
Name String - Name of the secret.
- selected
Repository List<Integer>Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- updated
At String - Date the secret was last updated by the provider.
- value String
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value
Encrypted String - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue. - visibility String
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected.
- created
At string - Date the secret was created.
- encrypted
Value string - (Optional) Please use
valueEncrypted. - key
Id string - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext
Value string - (Optional) Please use
value. - remote
Updated stringAt - Date the secret was last updated in GitHub.
- secret
Name string - Name of the secret.
- selected
Repository number[]Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- updated
At string - Date the secret was last updated by the provider.
- value string
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value
Encrypted string - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue. - visibility string
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected.
- created_
at str - Date the secret was created.
- encrypted_
value str - (Optional) Please use
valueEncrypted. - key_
id str - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext_
value str - (Optional) Please use
value. - remote_
updated_ strat - Date the secret was last updated in GitHub.
- secret_
name str - Name of the secret.
- selected_
repository_ Sequence[int]ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- updated_
at str - Date the secret was last updated by the provider.
- value str
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value_
encrypted str - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue. - visibility str
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected.
- created
At String - Date the secret was created.
- encrypted
Value String - (Optional) Please use
valueEncrypted. - key
Id String - ID of the public key used to encrypt the secret, required when setting
encryptedValue. - plaintext
Value String - (Optional) Please use
value. - remote
Updated StringAt - Date the secret was last updated in GitHub.
- secret
Name String - Name of the secret.
- selected
Repository List<Number>Ids An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.Note: One of either
value,valueEncrypted,encryptedValue, orplaintextValuemust be specified.- updated
At String - Date the secret was last updated by the provider.
- value String
- Plaintext value of the secret to be encrypted. This conflicts with
valueEncrypted,encryptedValue&plaintextValue. - value
Encrypted String - Encrypted value of the secret using the GitHub public key in Base64 format,
keyIdis required with this value. This conflicts withvalue,encryptedValue&plaintextValue. - visibility String
- Configures the access that repositories have to the organization secret; must be one of
all,private, orselected.
Package Details
- Repository
- GitHub pulumi/pulumi-github
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
githubTerraform Provider.
published on Wednesday, Apr 29, 2026 by Pulumi
