github.CodespacesUserSecret
Explore with Pulumi AI
Example Usage
Create CodespacesUserSecret Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CodespacesUserSecret(name: string, args: CodespacesUserSecretArgs, opts?: CustomResourceOptions);
@overload
def CodespacesUserSecret(resource_name: str,
args: CodespacesUserSecretArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CodespacesUserSecret(resource_name: str,
opts: Optional[ResourceOptions] = None,
secret_name: Optional[str] = None,
encrypted_value: Optional[str] = None,
plaintext_value: Optional[str] = None,
selected_repository_ids: Optional[Sequence[int]] = None)
func NewCodespacesUserSecret(ctx *Context, name string, args CodespacesUserSecretArgs, opts ...ResourceOption) (*CodespacesUserSecret, error)
public CodespacesUserSecret(string name, CodespacesUserSecretArgs args, CustomResourceOptions? opts = null)
public CodespacesUserSecret(String name, CodespacesUserSecretArgs args)
public CodespacesUserSecret(String name, CodespacesUserSecretArgs args, CustomResourceOptions options)
type: github:CodespacesUserSecret
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 CodespacesUserSecretArgs
- 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 CodespacesUserSecretArgs
- 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 CodespacesUserSecretArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CodespacesUserSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CodespacesUserSecretArgs
- 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 codespacesUserSecretResource = new Github.CodespacesUserSecret("codespacesUserSecretResource", new()
{
SecretName = "string",
EncryptedValue = "string",
PlaintextValue = "string",
SelectedRepositoryIds = new[]
{
0,
},
});
example, err := github.NewCodespacesUserSecret(ctx, "codespacesUserSecretResource", &github.CodespacesUserSecretArgs{
SecretName: pulumi.String("string"),
EncryptedValue: pulumi.String("string"),
PlaintextValue: pulumi.String("string"),
SelectedRepositoryIds: pulumi.IntArray{
pulumi.Int(0),
},
})
var codespacesUserSecretResource = new CodespacesUserSecret("codespacesUserSecretResource", CodespacesUserSecretArgs.builder()
.secretName("string")
.encryptedValue("string")
.plaintextValue("string")
.selectedRepositoryIds(0)
.build());
codespaces_user_secret_resource = github.CodespacesUserSecret("codespacesUserSecretResource",
secret_name="string",
encrypted_value="string",
plaintext_value="string",
selected_repository_ids=[0])
const codespacesUserSecretResource = new github.CodespacesUserSecret("codespacesUserSecretResource", {
secretName: "string",
encryptedValue: "string",
plaintextValue: "string",
selectedRepositoryIds: [0],
});
type: github:CodespacesUserSecret
properties:
encryptedValue: string
plaintextValue: string
secretName: string
selectedRepositoryIds:
- 0
CodespacesUserSecret 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 CodespacesUserSecret resource accepts the following input properties:
- Secret
Name string - Name of the secret
- Encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- 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 user secret.
- Secret
Name string - Name of the secret
- Encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- Plaintext
Value string - Plaintext value of the secret to be encrypted
- Selected
Repository []intIds - An array of repository ids that can access the user secret.
- secret
Name String - Name of the secret
- encrypted
Value String - Encrypted value of the secret using the GitHub public key in Base64 format.
- 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 user secret.
- secret
Name string - Name of the secret
- encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- plaintext
Value string - Plaintext value of the secret to be encrypted
- selected
Repository number[]Ids - An array of repository ids that can access the user secret.
- secret_
name str - Name of the secret
- 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_ Sequence[int]ids - An array of repository ids that can access the user secret.
- secret
Name String - Name of the secret
- encrypted
Value String - Encrypted value of the secret using the GitHub public key in Base64 format.
- 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 user secret.
Outputs
All input properties are implicitly available as output properties. Additionally, the CodespacesUserSecret resource produces the following output properties:
- created_
at str - Date of codespaces_secret creation.
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str - Date of codespaces_secret update.
Look up Existing CodespacesUserSecret Resource
Get an existing CodespacesUserSecret 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?: CodespacesUserSecretState, opts?: CustomResourceOptions): CodespacesUserSecret
@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) -> CodespacesUserSecret
func GetCodespacesUserSecret(ctx *Context, name string, id IDInput, state *CodespacesUserSecretState, opts ...ResourceOption) (*CodespacesUserSecret, error)
public static CodespacesUserSecret Get(string name, Input<string> id, CodespacesUserSecretState? state, CustomResourceOptions? opts = null)
public static CodespacesUserSecret get(String name, Output<String> id, CodespacesUserSecretState 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.
- Created
At string - Date of codespaces_secret creation.
- Encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- Plaintext
Value string - Plaintext value of the secret to be encrypted
- Secret
Name string - Name of the secret
- Selected
Repository List<int>Ids - An array of repository ids that can access the user secret.
- Updated
At string - Date of codespaces_secret update.
- Created
At string - Date of codespaces_secret creation.
- Encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- Plaintext
Value string - Plaintext value of the secret to be encrypted
- Secret
Name string - Name of the secret
- Selected
Repository []intIds - An array of repository ids that can access the user secret.
- Updated
At string - Date of codespaces_secret update.
- created
At String - Date of codespaces_secret creation.
- encrypted
Value String - Encrypted value of the secret using the GitHub public key in Base64 format.
- plaintext
Value String - Plaintext value of the secret to be encrypted
- secret
Name String - Name of the secret
- selected
Repository List<Integer>Ids - An array of repository ids that can access the user secret.
- updated
At String - Date of codespaces_secret update.
- created
At string - Date of codespaces_secret creation.
- encrypted
Value string - Encrypted value of the secret using the GitHub public key in Base64 format.
- plaintext
Value string - Plaintext value of the secret to be encrypted
- secret
Name string - Name of the secret
- selected
Repository number[]Ids - An array of repository ids that can access the user secret.
- updated
At string - Date of codespaces_secret update.
- created_
at str - Date of codespaces_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_ Sequence[int]ids - An array of repository ids that can access the user secret.
- updated_
at str - Date of codespaces_secret update.
- created
At String - Date of codespaces_secret creation.
- encrypted
Value String - Encrypted value of the secret using the GitHub public key in Base64 format.
- plaintext
Value String - Plaintext value of the secret to be encrypted
- secret
Name String - Name of the secret
- selected
Repository List<Number>Ids - An array of repository ids that can access the user secret.
- updated
At String - Date of codespaces_secret update.
Import
This resource can be imported using an ID made up of the secret name:
$ pulumi import github:index/codespacesUserSecret:CodespacesUserSecret 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.