1. Packages
  2. Github Provider
  3. API Docs
  4. ActionsOrganizationSecret
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 actions organization secret named mysecret to a github_actions_organization_secret resource named example.

    $ pulumi import github:index/actionsOrganizationSecret:ActionsOrganizationSecret example mysecret
    

    Create ActionsOrganizationSecret Resource

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

    Constructor syntax

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

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

    SecretName string
    Name of the secret.
    Visibility string
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    DestroyOnDrift bool

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    SelectedRepositoryIds List<int>
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    SecretName string
    Name of the secret.
    Visibility string
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    DestroyOnDrift bool

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    SelectedRepositoryIds []int
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    secretName String
    Name of the secret.
    visibility String
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    destroyOnDrift Boolean

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    selectedRepositoryIds List<Integer>
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    secretName string
    Name of the secret.
    visibility string
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    destroyOnDrift boolean

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    selectedRepositoryIds number[]
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    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, or selected.
    destroy_on_drift bool

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    selected_repository_ids Sequence[int]
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    secretName String
    Name of the secret.
    visibility String
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    destroyOnDrift Boolean

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    selectedRepositoryIds List<Number>
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ActionsOrganizationSecret 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.
    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.
    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.
    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.
    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.
    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.
    updatedAt String
    Date the secret was last updated by the provider.

    Look up Existing ActionsOrganizationSecret Resource

    Get an existing ActionsOrganizationSecret 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?: ActionsOrganizationSecretState, opts?: CustomResourceOptions): ActionsOrganizationSecret
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            destroy_on_drift: Optional[bool] = 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,
            visibility: Optional[str] = None) -> ActionsOrganizationSecret
    func GetActionsOrganizationSecret(ctx *Context, name string, id IDInput, state *ActionsOrganizationSecretState, opts ...ResourceOption) (*ActionsOrganizationSecret, error)
    public static ActionsOrganizationSecret Get(string name, Input<string> id, ActionsOrganizationSecretState? state, CustomResourceOptions? opts = null)
    public static ActionsOrganizationSecret get(String name, Output<String> id, ActionsOrganizationSecretState state, CustomResourceOptions options)
    resources:  _:    type: github:ActionsOrganizationSecret    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.
    DestroyOnDrift bool

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    RemoteUpdatedAt string
    Date the secret was last updated in GitHub.
    SecretName string
    Name of the secret.
    SelectedRepositoryIds List<int>
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    UpdatedAt string
    Date the secret was last updated by the provider.
    Visibility string
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    CreatedAt string
    Date the secret was created.
    DestroyOnDrift bool

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    RemoteUpdatedAt string
    Date the secret was last updated in GitHub.
    SecretName string
    Name of the secret.
    SelectedRepositoryIds []int
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    UpdatedAt string
    Date the secret was last updated by the provider.
    Visibility string
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    createdAt String
    Date the secret was created.
    destroyOnDrift Boolean

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    remoteUpdatedAt String
    Date the secret was last updated in GitHub.
    secretName String
    Name of the secret.
    selectedRepositoryIds List<Integer>
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    updatedAt String
    Date the secret was last updated by the provider.
    visibility String
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    createdAt string
    Date the secret was created.
    destroyOnDrift boolean

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    remoteUpdatedAt string
    Date the secret was last updated in GitHub.
    secretName string
    Name of the secret.
    selectedRepositoryIds number[]
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    updatedAt string
    Date the secret was last updated by the provider.
    visibility string
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    created_at str
    Date the secret was created.
    destroy_on_drift bool

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    remote_updated_at str
    Date the secret was last updated in GitHub.
    secret_name str
    Name of the secret.
    selected_repository_ids Sequence[int]
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    updated_at str
    Date the secret was last updated by the provider.
    visibility str
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.
    createdAt String
    Date the secret was created.
    destroyOnDrift Boolean

    (Optional) This is ignored as drift detection is built into the resource.

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

    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 ignore_changes on the remote_updated_at field.

    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.
    remoteUpdatedAt String
    Date the secret was last updated in GitHub.
    secretName String
    Name of the secret.
    selectedRepositoryIds List<Number>
    An array of repository IDs that can access the organization variable; this requires visibility to be set to selected.

    Deprecated: This field is deprecated and will be removed in a future release. Please use the github.ActionsOrganizationSecretRepositories or github.ActionsOrganizationSecretRepository resources to manage repository access to organization secrets.

    updatedAt String
    Date the secret was last updated by the provider.
    visibility String
    Configures the access that repositories have to the organization secret; must be one of all, private, or selected.

    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