Codespaces User Secret Args
data class CodespacesUserSecretArgs(val encryptedValue: Output<String>? = null, val plaintextValue: Output<String>? = null, val secretName: Output<String>? = null, val selectedRepositoryIds: Output<List<Int>>? = null) : ConvertibleToJava<CodespacesUserSecretArgs>
Example Usage
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
Content copied to clipboard
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.
Constructors
Properties
Link copied to clipboard
Encrypted value of the secret using the GitHub public key in Base64 format.
Link copied to clipboard
Plaintext value of the secret to be encrypted
Link copied to clipboard
Name of the secret
Link copied to clipboard
An array of repository ids that can access the user secret.