1. Packages
  2. Github Provider
  3. API Docs
  4. DependabotSecret
GitHub v6.12.1 published on Thursday, Feb 12, 2026 by Pulumi
github logo
GitHub v6.12.1 published on Thursday, Feb 12, 2026 by Pulumi

    Import

    Import Command

    The following command imports a GitHub Dependabot secret named mysecret for the repo myrepo to a github_dependabot_secret resource named example.

    $ pulumi import github:index/dependabotSecret:DependabotSecret example myrepo:mysecret
    

    Create DependabotSecret Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DependabotSecret(name: string, args: DependabotSecretArgs, opts?: CustomResourceOptions);
    @overload
    def DependabotSecret(resource_name: str,
                         args: DependabotSecretArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DependabotSecret(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         repository: Optional[str] = None,
                         secret_name: Optional[str] = None,
                         encrypted_value: Optional[str] = None,
                         key_id: Optional[str] = None,
                         plaintext_value: Optional[str] = None)
    func NewDependabotSecret(ctx *Context, name string, args DependabotSecretArgs, opts ...ResourceOption) (*DependabotSecret, error)
    public DependabotSecret(string name, DependabotSecretArgs args, CustomResourceOptions? opts = null)
    public DependabotSecret(String name, DependabotSecretArgs args)
    public DependabotSecret(String name, DependabotSecretArgs args, CustomResourceOptions options)
    
    type: github:DependabotSecret
    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 DependabotSecretArgs
    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 DependabotSecretArgs
    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 DependabotSecretArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DependabotSecretArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DependabotSecretArgs
    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 dependabotSecretResource = new Github.DependabotSecret("dependabotSecretResource", new()
    {
        Repository = "string",
        SecretName = "string",
        EncryptedValue = "string",
        KeyId = "string",
        PlaintextValue = "string",
    });
    
    example, err := github.NewDependabotSecret(ctx, "dependabotSecretResource", &github.DependabotSecretArgs{
    	Repository:     pulumi.String("string"),
    	SecretName:     pulumi.String("string"),
    	EncryptedValue: pulumi.String("string"),
    	KeyId:          pulumi.String("string"),
    	PlaintextValue: pulumi.String("string"),
    })
    
    var dependabotSecretResource = new DependabotSecret("dependabotSecretResource", DependabotSecretArgs.builder()
        .repository("string")
        .secretName("string")
        .encryptedValue("string")
        .keyId("string")
        .plaintextValue("string")
        .build());
    
    dependabot_secret_resource = github.DependabotSecret("dependabotSecretResource",
        repository="string",
        secret_name="string",
        encrypted_value="string",
        key_id="string",
        plaintext_value="string")
    
    const dependabotSecretResource = new github.DependabotSecret("dependabotSecretResource", {
        repository: "string",
        secretName: "string",
        encryptedValue: "string",
        keyId: "string",
        plaintextValue: "string",
    });
    
    type: github:DependabotSecret
    properties:
        encryptedValue: string
        keyId: string
        plaintextValue: string
        repository: string
        secretName: string
    

    DependabotSecret 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 DependabotSecret resource accepts the following input properties:

    Repository string
    Name of the repository.
    SecretName string
    Name of the secret.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    KeyId string
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    PlaintextValue string

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    Repository string
    Name of the repository.
    SecretName string
    Name of the secret.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    KeyId string
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    PlaintextValue string

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    repository String
    Name of the repository.
    secretName String
    Name of the secret.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    keyId String
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintextValue String

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    repository string
    Name of the repository.
    secretName string
    Name of the secret.
    encryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    keyId string
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintextValue string

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    repository str
    Name of the repository.
    secret_name str
    Name of the secret.
    encrypted_value str
    Encrypted value of the secret using the GitHub public key in Base64 format.
    key_id str
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintext_value str

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    repository String
    Name of the repository.
    secretName String
    Name of the secret.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    keyId String
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintextValue String

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DependabotSecret resource produces the following output properties:

    CreatedAt string
    Date the secret was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    RemoteUpdatedAt string
    Date the secret was last updated in GitHub.
    RepositoryId int
    ID of the repository.
    UpdatedAt string
    Date the secret was last updated by the provider.
    CreatedAt string
    Date the secret was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    RemoteUpdatedAt string
    Date the secret was last updated in GitHub.
    RepositoryId int
    ID of the repository.
    UpdatedAt string
    Date the secret was last updated by the provider.
    createdAt String
    Date the secret was created.
    id String
    The provider-assigned unique ID for this managed resource.
    remoteUpdatedAt String
    Date the secret was last updated in GitHub.
    repositoryId Integer
    ID of the repository.
    updatedAt String
    Date the secret was last updated by the provider.
    createdAt string
    Date the secret was created.
    id string
    The provider-assigned unique ID for this managed resource.
    remoteUpdatedAt string
    Date the secret was last updated in GitHub.
    repositoryId number
    ID of the repository.
    updatedAt 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_at str
    Date the secret was last updated in GitHub.
    repository_id int
    ID of the repository.
    updated_at str
    Date the secret was last updated by the provider.
    createdAt String
    Date the secret was created.
    id String
    The provider-assigned unique ID for this managed resource.
    remoteUpdatedAt String
    Date the secret was last updated in GitHub.
    repositoryId Number
    ID of the repository.
    updatedAt String
    Date the secret was last updated by the provider.

    Look up Existing DependabotSecret Resource

    Get an existing DependabotSecret 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?: DependabotSecretState, opts?: CustomResourceOptions): DependabotSecret
    @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,
            repository: Optional[str] = None,
            repository_id: Optional[int] = None,
            secret_name: Optional[str] = None,
            updated_at: Optional[str] = None) -> DependabotSecret
    func GetDependabotSecret(ctx *Context, name string, id IDInput, state *DependabotSecretState, opts ...ResourceOption) (*DependabotSecret, error)
    public static DependabotSecret Get(string name, Input<string> id, DependabotSecretState? state, CustomResourceOptions? opts = null)
    public static DependabotSecret get(String name, Output<String> id, DependabotSecretState state, CustomResourceOptions options)
    resources:  _:    type: github:DependabotSecret    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.
    The following state arguments are supported:
    CreatedAt string
    Date the secret was created.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    KeyId string
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    PlaintextValue string

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    RemoteUpdatedAt string
    Date the secret was last updated in GitHub.
    Repository string
    Name of the repository.
    RepositoryId int
    ID of the repository.
    SecretName string
    Name of the secret.
    UpdatedAt string
    Date the secret was last updated by the provider.
    CreatedAt string
    Date the secret was created.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    KeyId string
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    PlaintextValue string

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    RemoteUpdatedAt string
    Date the secret was last updated in GitHub.
    Repository string
    Name of the repository.
    RepositoryId int
    ID of the repository.
    SecretName string
    Name of the secret.
    UpdatedAt string
    Date the secret was last updated by the provider.
    createdAt String
    Date the secret was created.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    keyId String
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintextValue String

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    remoteUpdatedAt String
    Date the secret was last updated in GitHub.
    repository String
    Name of the repository.
    repositoryId Integer
    ID of the repository.
    secretName String
    Name of the secret.
    updatedAt String
    Date the secret was last updated by the provider.
    createdAt string
    Date the secret was created.
    encryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    keyId string
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintextValue string

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    remoteUpdatedAt string
    Date the secret was last updated in GitHub.
    repository string
    Name of the repository.
    repositoryId number
    ID of the repository.
    secretName string
    Name of the secret.
    updatedAt string
    Date the secret was last updated by the provider.
    created_at str
    Date the secret was created.
    encrypted_value str
    Encrypted value of the secret using the GitHub public key in Base64 format.
    key_id str
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintext_value str

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    remote_updated_at str
    Date the secret was last updated in GitHub.
    repository str
    Name of the repository.
    repository_id int
    ID of the repository.
    secret_name str
    Name of the secret.
    updated_at str
    Date the secret was last updated by the provider.
    createdAt String
    Date the secret was created.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    keyId String
    ID of the public key used to encrypt the secret. This should be provided when setting encrypted_value; if it isn't then the current public key will be looked up, which could cause a missmatch. This conflicts with plaintext_value.
    plaintextValue String

    Plaintext value of the secret to be encrypted.

    Note: One of either encrypted_value or plaintext_value must be specified.

    remoteUpdatedAt String
    Date the secret was last updated in GitHub.
    repository String
    Name of the repository.
    repositoryId Number
    ID of the repository.
    secretName String
    Name of the secret.
    updatedAt String
    Date the secret was last updated by the provider.

    Package Details

    Repository
    GitHub pulumi/pulumi-github
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the github Terraform Provider.
    github logo
    GitHub v6.12.1 published on Thursday, Feb 12, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate