Import
Import Command
The following command imports a GitHub actions secret named mysecret for the repo myrepo to a github_actions_secret resource named example.
$ pulumi import github:index/actionsSecret:ActionsSecret example myrepo:mysecret
Create ActionsSecret Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ActionsSecret(name: string, args: ActionsSecretArgs, opts?: CustomResourceOptions);@overload
def ActionsSecret(resource_name: str,
args: ActionsSecretArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ActionsSecret(resource_name: str,
opts: Optional[ResourceOptions] = None,
repository: Optional[str] = None,
secret_name: Optional[str] = None,
destroy_on_drift: Optional[bool] = None,
encrypted_value: Optional[str] = None,
key_id: Optional[str] = None,
plaintext_value: Optional[str] = None)func NewActionsSecret(ctx *Context, name string, args ActionsSecretArgs, opts ...ResourceOption) (*ActionsSecret, error)public ActionsSecret(string name, ActionsSecretArgs args, CustomResourceOptions? opts = null)
public ActionsSecret(String name, ActionsSecretArgs args)
public ActionsSecret(String name, ActionsSecretArgs args, CustomResourceOptions options)
type: github:ActionsSecret
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 ActionsSecretArgs
- 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 ActionsSecretArgs
- 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 ActionsSecretArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActionsSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ActionsSecretArgs
- 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 actionsSecretResource = new Github.ActionsSecret("actionsSecretResource", new()
{
Repository = "string",
SecretName = "string",
EncryptedValue = "string",
KeyId = "string",
PlaintextValue = "string",
});
example, err := github.NewActionsSecret(ctx, "actionsSecretResource", &github.ActionsSecretArgs{
Repository: pulumi.String("string"),
SecretName: pulumi.String("string"),
EncryptedValue: pulumi.String("string"),
KeyId: pulumi.String("string"),
PlaintextValue: pulumi.String("string"),
})
var actionsSecretResource = new ActionsSecret("actionsSecretResource", ActionsSecretArgs.builder()
.repository("string")
.secretName("string")
.encryptedValue("string")
.keyId("string")
.plaintextValue("string")
.build());
actions_secret_resource = github.ActionsSecret("actionsSecretResource",
repository="string",
secret_name="string",
encrypted_value="string",
key_id="string",
plaintext_value="string")
const actionsSecretResource = new github.ActionsSecret("actionsSecretResource", {
repository: "string",
secretName: "string",
encryptedValue: "string",
keyId: "string",
plaintextValue: "string",
});
type: github:ActionsSecret
properties:
encryptedValue: string
keyId: string
plaintextValue: string
repository: string
secretName: string
ActionsSecret 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 ActionsSecret resource accepts the following input properties:
- Repository string
- Name of the repository.
- Secret
Name string - Name of the secret.
- Destroy
On boolDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- Repository string
- Name of the repository.
- Secret
Name string - Name of the secret.
- Destroy
On boolDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository String
- Name of the repository.
- secret
Name String - Name of the secret.
- destroy
On BooleanDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository string
- Name of the repository.
- secret
Name string - Name of the secret.
- destroy
On booleanDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository str
- Name of the repository.
- secret_
name str - Name of the secret.
- destroy_
on_ booldrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository String
- Name of the repository.
- secret
Name String - Name of the secret.
- destroy
On BooleanDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the ActionsSecret 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.
- Repository
Id int - ID of the repository.
- 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.
- Repository
Id int - ID of the repository.
- 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.
- repository
Id Integer - ID of the repository.
- 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.
- repository
Id number - ID of the repository.
- 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.
- repository_
id int - ID of the repository.
- 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.
- repository
Id Number - ID of the repository.
- updated
At String - Date the secret was last updated by the provider.
Look up Existing ActionsSecret Resource
Get an existing ActionsSecret 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?: ActionsSecretState, opts?: CustomResourceOptions): ActionsSecret@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,
repository: Optional[str] = None,
repository_id: Optional[int] = None,
secret_name: Optional[str] = None,
updated_at: Optional[str] = None) -> ActionsSecretfunc GetActionsSecret(ctx *Context, name string, id IDInput, state *ActionsSecretState, opts ...ResourceOption) (*ActionsSecret, error)public static ActionsSecret Get(string name, Input<string> id, ActionsSecretState? state, CustomResourceOptions? opts = null)public static ActionsSecret get(String name, Output<String> id, ActionsSecretState state, CustomResourceOptions options)resources: _: type: github:ActionsSecret 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.
- Destroy
On boolDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- Repository string
- Name of the repository.
- Repository
Id int - ID of the repository.
- Secret
Name string - Name of the secret.
- Updated
At string - Date the secret was last updated by the provider.
- Created
At string - Date the secret was created.
- Destroy
On boolDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- Repository string
- Name of the repository.
- Repository
Id int - ID of the repository.
- Secret
Name string - Name of the secret.
- Updated
At string - Date the secret was last updated by the provider.
- created
At String - Date the secret was created.
- destroy
On BooleanDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository String
- Name of the repository.
- repository
Id Integer - ID of the repository.
- secret
Name String - Name of the secret.
- updated
At String - Date the secret was last updated by the provider.
- created
At string - Date the secret was created.
- destroy
On booleanDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository string
- Name of the repository.
- repository
Id number - ID of the repository.
- secret
Name string - Name of the secret.
- updated
At string - Date the secret was last updated by the provider.
- created_
at str - Date the secret was created.
- destroy_
on_ booldrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- 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.
- created
At String - Date the secret was created.
- destroy
On BooleanDrift (Optional) This is ignored as drift detection is built into the resource.
Note: One of either
encrypted_valueorplaintext_valuemust be specified.- 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.
- repository String
- Name of the repository.
- repository
Id Number - ID of the repository.
- secret
Name String - Name of the secret.
- updated
At 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
githubTerraform Provider.
