Import
Import Command
The following command imports a GitHub Dependabot organization secret named mysecret to a github_dependabot_organization_secret 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)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",
EncryptedValue = "string",
KeyId = "string",
PlaintextValue = "string",
});
example, err := github.NewDependabotOrganizationSecret(ctx, "dependabotOrganizationSecretResource", &github.DependabotOrganizationSecretArgs{
SecretName: pulumi.String("string"),
Visibility: pulumi.String("string"),
EncryptedValue: pulumi.String("string"),
KeyId: pulumi.String("string"),
PlaintextValue: pulumi.String("string"),
})
var dependabotOrganizationSecretResource = new DependabotOrganizationSecret("dependabotOrganizationSecretResource", DependabotOrganizationSecretArgs.builder()
.secretName("string")
.visibility("string")
.encryptedValue("string")
.keyId("string")
.plaintextValue("string")
.build());
dependabot_organization_secret_resource = github.DependabotOrganizationSecret("dependabotOrganizationSecretResource",
secret_name="string",
visibility="string",
encrypted_value="string",
key_id="string",
plaintext_value="string")
const dependabotOrganizationSecretResource = new github.DependabotOrganizationSecret("dependabotOrganizationSecretResource", {
secretName: "string",
visibility: "string",
encryptedValue: "string",
keyId: "string",
plaintextValue: "string",
});
type: github:DependabotOrganizationSecret
properties:
encryptedValue: string
keyId: string
plaintextValue: string
secretName: 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 - Encrypted value of the secret using the GitHub public key in Base64 format.
- Key
Id 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 withplaintext_value. - Plaintext
Value string - Plaintext value of the secret to be encrypted.
- Selected
Repository List<int>Ids - An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.
- 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 - Encrypted value of the secret using the GitHub public key in Base64 format.
- Key
Id 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 withplaintext_value. - Plaintext
Value string - Plaintext value of the secret to be encrypted.
- Selected
Repository []intIds - An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.
- 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 - Encrypted value of the secret using the GitHub public key in Base64 format.
- key
Id 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 withplaintext_value. - plaintext
Value String - Plaintext value of the secret to be encrypted.
- selected
Repository List<Integer>Ids - An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.
- 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 - Encrypted value of the secret using the GitHub public key in Base64 format.
- key
Id 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 withplaintext_value. - plaintext
Value string - Plaintext value of the secret to be encrypted.
- selected
Repository number[]Ids - An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.
- 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 - 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 withplaintext_value. - plaintext_
value str - Plaintext value of the secret to be encrypted.
- selected_
repository_ Sequence[int]ids - An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.
- 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 - Encrypted value of the secret using the GitHub public key in Base64 format.
- key
Id 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 withplaintext_value. - plaintext
Value String - Plaintext value of the secret to be encrypted.
- selected
Repository List<Number>Ids - An array of repository IDs that can access the organization variable; this requires
visibilityto be set toselected.
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,
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 - Encrypted value of the secret using the GitHub public key in Base64 format.
- Key
Id 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 withplaintext_value. - Plaintext
Value string - Plaintext value of the secret to be encrypted.
- 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. - Updated
At 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, orselected.
- Created
At string - Date the secret was created.
- Encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- Key
Id 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 withplaintext_value. - Plaintext
Value string - Plaintext value of the secret to be encrypted.
- 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. - Updated
At 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, orselected.
- created
At String - Date the secret was created.
- encrypted
Value String - Encrypted value of the secret using the GitHub public key in Base64 format.
- key
Id 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 withplaintext_value. - plaintext
Value String - Plaintext value of the secret to be encrypted.
- 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. - updated
At 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, orselected.
- created
At string - Date the secret was created.
- encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- key
Id 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 withplaintext_value. - plaintext
Value string - Plaintext value of the secret to be encrypted.
- 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. - updated
At 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, orselected.
- 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 withplaintext_value. - plaintext_
value str - Plaintext value of the secret to be encrypted.
- 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. - 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, orselected.
- created
At String - Date the secret was created.
- encrypted
Value String - Encrypted value of the secret using the GitHub public key in Base64 format.
- key
Id 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 withplaintext_value. - plaintext
Value String - Plaintext value of the secret to be encrypted.
- 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. - updated
At 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, orselected.
Package Details
- Repository
- GitHub pulumi/pulumi-github
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
githubTerraform Provider.
