1. Packages
  2. GitHub
  3. API Docs
  4. DependabotOrganizationSecret
GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi

github.DependabotOrganizationSecret

Explore with Pulumi AI

github logo
GitHub v6.1.0 published on Monday, Mar 11, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as github from "@pulumi/github";
    
    const exampleSecretDependabotOrganizationSecret = new github.DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret", {
        secretName: "example_secret_name",
        visibility: "private",
        plaintextValue: _var.some_secret_string,
    });
    const exampleSecretIndex_dependabotOrganizationSecretDependabotOrganizationSecret = new github.DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", {
        secretName: "example_secret_name",
        visibility: "private",
        encryptedValue: _var.some_encrypted_secret_string,
    });
    
    import pulumi
    import pulumi_github as github
    
    example_secret_dependabot_organization_secret = github.DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret",
        secret_name="example_secret_name",
        visibility="private",
        plaintext_value=var["some_secret_string"])
    example_secret_index_dependabot_organization_secret_dependabot_organization_secret = github.DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret",
        secret_name="example_secret_name",
        visibility="private",
        encrypted_value=var["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, "exampleSecretDependabotOrganizationSecret", &github.DependabotOrganizationSecretArgs{
    			SecretName:     pulumi.String("example_secret_name"),
    			Visibility:     pulumi.String("private"),
    			PlaintextValue: pulumi.Any(_var.Some_secret_string),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = github.NewDependabotOrganizationSecret(ctx, "exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", &github.DependabotOrganizationSecretArgs{
    			SecretName:     pulumi.String("example_secret_name"),
    			Visibility:     pulumi.String("private"),
    			EncryptedValue: pulumi.Any(_var.Some_encrypted_secret_string),
    		})
    		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 exampleSecretDependabotOrganizationSecret = new Github.DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret", new()
        {
            SecretName = "example_secret_name",
            Visibility = "private",
            PlaintextValue = @var.Some_secret_string,
        });
    
        var exampleSecretIndex_dependabotOrganizationSecretDependabotOrganizationSecret = new Github.DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", new()
        {
            SecretName = "example_secret_name",
            Visibility = "private",
            EncryptedValue = @var.Some_encrypted_secret_string,
        });
    
    });
    
    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 exampleSecretDependabotOrganizationSecret = new DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret", DependabotOrganizationSecretArgs.builder()        
                .secretName("example_secret_name")
                .visibility("private")
                .plaintextValue(var_.some_secret_string())
                .build());
    
            var exampleSecretIndex_dependabotOrganizationSecretDependabotOrganizationSecret = new DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", DependabotOrganizationSecretArgs.builder()        
                .secretName("example_secret_name")
                .visibility("private")
                .encryptedValue(var_.some_encrypted_secret_string())
                .build());
    
        }
    }
    
    resources:
      exampleSecretDependabotOrganizationSecret:
        type: github:DependabotOrganizationSecret
        properties:
          secretName: example_secret_name
          visibility: private
          plaintextValue: ${var.some_secret_string}
      exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret:
        type: github:DependabotOrganizationSecret
        properties:
          secretName: example_secret_name
          visibility: private
          encryptedValue: ${var.some_encrypted_secret_string}
    
    import * as pulumi from "@pulumi/pulumi";
    import * as github from "@pulumi/github";
    
    const repo = github.getRepository({
        fullName: "my-org/repo",
    });
    const exampleSecretDependabotOrganizationSecret = new github.DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret", {
        secretName: "example_secret_name",
        visibility: "selected",
        plaintextValue: _var.some_secret_string,
        selectedRepositoryIds: [repo.then(repo => repo.repoId)],
    });
    const exampleSecretIndex_dependabotOrganizationSecretDependabotOrganizationSecret = new github.DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", {
        secretName: "example_secret_name",
        visibility: "selected",
        encryptedValue: _var.some_encrypted_secret_string,
        selectedRepositoryIds: [repo.then(repo => repo.repoId)],
    });
    
    import pulumi
    import pulumi_github as github
    
    repo = github.get_repository(full_name="my-org/repo")
    example_secret_dependabot_organization_secret = github.DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret",
        secret_name="example_secret_name",
        visibility="selected",
        plaintext_value=var["some_secret_string"],
        selected_repository_ids=[repo.repo_id])
    example_secret_index_dependabot_organization_secret_dependabot_organization_secret = github.DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret",
        secret_name="example_secret_name",
        visibility="selected",
        encrypted_value=var["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.LookupRepository(ctx, &github.LookupRepositoryArgs{
    			FullName: pulumi.StringRef("my-org/repo"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = github.NewDependabotOrganizationSecret(ctx, "exampleSecretDependabotOrganizationSecret", &github.DependabotOrganizationSecretArgs{
    			SecretName:     pulumi.String("example_secret_name"),
    			Visibility:     pulumi.String("selected"),
    			PlaintextValue: pulumi.Any(_var.Some_secret_string),
    			SelectedRepositoryIds: pulumi.IntArray{
    				*pulumi.Int(repo.RepoId),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = github.NewDependabotOrganizationSecret(ctx, "exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", &github.DependabotOrganizationSecretArgs{
    			SecretName:     pulumi.String("example_secret_name"),
    			Visibility:     pulumi.String("selected"),
    			EncryptedValue: pulumi.Any(_var.Some_encrypted_secret_string),
    			SelectedRepositoryIds: pulumi.IntArray{
    				*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.GetRepository.Invoke(new()
        {
            FullName = "my-org/repo",
        });
    
        var exampleSecretDependabotOrganizationSecret = new Github.DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret", new()
        {
            SecretName = "example_secret_name",
            Visibility = "selected",
            PlaintextValue = @var.Some_secret_string,
            SelectedRepositoryIds = new[]
            {
                repo.Apply(getRepositoryResult => getRepositoryResult.RepoId),
            },
        });
    
        var exampleSecretIndex_dependabotOrganizationSecretDependabotOrganizationSecret = new Github.DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", new()
        {
            SecretName = "example_secret_name",
            Visibility = "selected",
            EncryptedValue = @var.Some_encrypted_secret_string,
            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 exampleSecretDependabotOrganizationSecret = new DependabotOrganizationSecret("exampleSecretDependabotOrganizationSecret", DependabotOrganizationSecretArgs.builder()        
                .secretName("example_secret_name")
                .visibility("selected")
                .plaintextValue(var_.some_secret_string())
                .selectedRepositoryIds(repo.applyValue(getRepositoryResult -> getRepositoryResult.repoId()))
                .build());
    
            var exampleSecretIndex_dependabotOrganizationSecretDependabotOrganizationSecret = new DependabotOrganizationSecret("exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret", DependabotOrganizationSecretArgs.builder()        
                .secretName("example_secret_name")
                .visibility("selected")
                .encryptedValue(var_.some_encrypted_secret_string())
                .selectedRepositoryIds(repo.applyValue(getRepositoryResult -> getRepositoryResult.repoId()))
                .build());
    
        }
    }
    
    resources:
      exampleSecretDependabotOrganizationSecret:
        type: github:DependabotOrganizationSecret
        properties:
          secretName: example_secret_name
          visibility: selected
          plaintextValue: ${var.some_secret_string}
          selectedRepositoryIds:
            - ${repo.repoId}
      exampleSecretIndex/dependabotOrganizationSecretDependabotOrganizationSecret:
        type: github:DependabotOrganizationSecret
        properties:
          secretName: example_secret_name
          visibility: selected
          encryptedValue: ${var.some_encrypted_secret_string}
          selectedRepositoryIds:
            - ${repo.repoId}
    variables:
      repo:
        fn::invoke:
          Function: github:getRepository
          Arguments:
            fullName: my-org/repo
    

    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,
                                     plaintext_value: Optional[str] = None,
                                     selected_repository_ids: Optional[Sequence[int]] = 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.

    Example

    The following reference example uses placeholder values for all input properties.

    var dependabotOrganizationSecretResource = new Github.DependabotOrganizationSecret("dependabotOrganizationSecretResource", new()
    {
        SecretName = "string",
        Visibility = "string",
        EncryptedValue = "string",
        PlaintextValue = "string",
        SelectedRepositoryIds = new[]
        {
            0,
        },
    });
    
    example, err := github.NewDependabotOrganizationSecret(ctx, "dependabotOrganizationSecretResource", &github.DependabotOrganizationSecretArgs{
    	SecretName:     pulumi.String("string"),
    	Visibility:     pulumi.String("string"),
    	EncryptedValue: pulumi.String("string"),
    	PlaintextValue: pulumi.String("string"),
    	SelectedRepositoryIds: pulumi.IntArray{
    		pulumi.Int(0),
    	},
    })
    
    var dependabotOrganizationSecretResource = new DependabotOrganizationSecret("dependabotOrganizationSecretResource", DependabotOrganizationSecretArgs.builder()        
        .secretName("string")
        .visibility("string")
        .encryptedValue("string")
        .plaintextValue("string")
        .selectedRepositoryIds(0)
        .build());
    
    dependabot_organization_secret_resource = github.DependabotOrganizationSecret("dependabotOrganizationSecretResource",
        secret_name="string",
        visibility="string",
        encrypted_value="string",
        plaintext_value="string",
        selected_repository_ids=[0])
    
    const dependabotOrganizationSecretResource = new github.DependabotOrganizationSecret("dependabotOrganizationSecretResource", {
        secretName: "string",
        visibility: "string",
        encryptedValue: "string",
        plaintextValue: "string",
        selectedRepositoryIds: [0],
    });
    
    type: github:DependabotOrganizationSecret
    properties:
        encryptedValue: string
        plaintextValue: string
        secretName: string
        selectedRepositoryIds:
            - 0
        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

    The DependabotOrganizationSecret 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, selected. selected_repository_ids is required if set to selected.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    PlaintextValue string
    Plaintext value of the secret to be encrypted
    SelectedRepositoryIds List<int>
    An array of repository ids that can access the organization secret.
    SecretName string
    Name of the secret
    Visibility string
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    PlaintextValue string
    Plaintext value of the secret to be encrypted
    SelectedRepositoryIds []int
    An array of repository ids that can access the organization secret.
    secretName String
    Name of the secret
    visibility String
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintextValue String
    Plaintext value of the secret to be encrypted
    selectedRepositoryIds List<Integer>
    An array of repository ids that can access the organization secret.
    secretName string
    Name of the secret
    visibility string
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    encryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintextValue string
    Plaintext value of the secret to be encrypted
    selectedRepositoryIds number[]
    An array of repository ids that can access the organization secret.
    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, selected. selected_repository_ids is required if set to selected.
    encrypted_value str
    Encrypted value of the secret using the GitHub public key in Base64 format.
    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 secret.
    secretName String
    Name of the secret
    visibility String
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintextValue String
    Plaintext value of the secret to be encrypted
    selectedRepositoryIds List<Number>
    An array of repository ids that can access the organization secret.

    Outputs

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

    CreatedAt string
    Date of dependabot_secret creation.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    Date of dependabot_secret update.
    CreatedAt string
    Date of dependabot_secret creation.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt string
    Date of dependabot_secret update.
    createdAt String
    Date of dependabot_secret creation.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    Date of dependabot_secret update.
    createdAt string
    Date of dependabot_secret creation.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt string
    Date of dependabot_secret update.
    created_at str
    Date of dependabot_secret creation.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at str
    Date of dependabot_secret update.
    createdAt String
    Date of dependabot_secret creation.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt String
    Date of dependabot_secret update.

    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,
            plaintext_value: Optional[str] = None,
            secret_name: Optional[str] = None,
            selected_repository_ids: Optional[Sequence[int]] = None,
            updated_at: Optional[str] = None,
            visibility: Optional[str] = None) -> DependabotOrganizationSecret
    func 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)
    Resource lookup is not supported in YAML
    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 of dependabot_secret creation.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    PlaintextValue string
    Plaintext value of the secret to be encrypted
    SecretName string
    Name of the secret
    SelectedRepositoryIds List<int>
    An array of repository ids that can access the organization secret.
    UpdatedAt string
    Date of dependabot_secret update.
    Visibility string
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    CreatedAt string
    Date of dependabot_secret creation.
    EncryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    PlaintextValue string
    Plaintext value of the secret to be encrypted
    SecretName string
    Name of the secret
    SelectedRepositoryIds []int
    An array of repository ids that can access the organization secret.
    UpdatedAt string
    Date of dependabot_secret update.
    Visibility string
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    createdAt String
    Date of dependabot_secret creation.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintextValue String
    Plaintext value of the secret to be encrypted
    secretName String
    Name of the secret
    selectedRepositoryIds List<Integer>
    An array of repository ids that can access the organization secret.
    updatedAt String
    Date of dependabot_secret update.
    visibility String
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    createdAt string
    Date of dependabot_secret creation.
    encryptedValue string
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintextValue string
    Plaintext value of the secret to be encrypted
    secretName string
    Name of the secret
    selectedRepositoryIds number[]
    An array of repository ids that can access the organization secret.
    updatedAt string
    Date of dependabot_secret update.
    visibility string
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    created_at str
    Date of dependabot_secret creation.
    encrypted_value str
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintext_value str
    Plaintext value of the secret to be encrypted
    secret_name str
    Name of the secret
    selected_repository_ids Sequence[int]
    An array of repository ids that can access the organization secret.
    updated_at str
    Date of dependabot_secret update.
    visibility str
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.
    createdAt String
    Date of dependabot_secret creation.
    encryptedValue String
    Encrypted value of the secret using the GitHub public key in Base64 format.
    plaintextValue String
    Plaintext value of the secret to be encrypted
    secretName String
    Name of the secret
    selectedRepositoryIds List<Number>
    An array of repository ids that can access the organization secret.
    updatedAt String
    Date of dependabot_secret update.
    visibility String
    Configures the access that repositories have to the organization secret. Must be one of all, private, selected. selected_repository_ids is required if set to selected.

    Import

    This resource can be imported using an ID made up of the secret name:

    $ pulumi import github:index/dependabotOrganizationSecret:DependabotOrganizationSecret test_secret test_secret_name
    

    NOTE: the implementation is limited in that it won’t fetch the value of the

    plaintext_value or encrypted_value fields when importing. You may need to ignore changes for these as a workaround.

    To learn more about importing existing cloud resources, see Importing resources.

    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.1.0 published on Monday, Mar 11, 2024 by Pulumi