published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Create DependabotSecret Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DependabotSecret(name: string, args: DependabotSecretArgs, opts?: CustomResourceOptions);@overload
def DependabotSecret(resource_name: str,
args: DependabotSecretArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DependabotSecret(resource_name: str,
opts: Optional[ResourceOptions] = None,
repository: Optional[str] = None,
secret_name: Optional[str] = None,
encrypted_value: Optional[str] = None,
plaintext_value: Optional[str] = None)func NewDependabotSecret(ctx *Context, name string, args DependabotSecretArgs, opts ...ResourceOption) (*DependabotSecret, error)public DependabotSecret(string name, DependabotSecretArgs args, CustomResourceOptions? opts = null)
public DependabotSecret(String name, DependabotSecretArgs args)
public DependabotSecret(String name, DependabotSecretArgs args, CustomResourceOptions options)
type: github:DependabotSecret
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 DependabotSecretArgs
- 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 DependabotSecretArgs
- 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 DependabotSecretArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DependabotSecretArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DependabotSecretArgs
- 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 dependabotSecretResource = new Github.DependabotSecret("dependabotSecretResource", new()
{
Repository = "string",
SecretName = "string",
EncryptedValue = "string",
PlaintextValue = "string",
});
example, err := github.NewDependabotSecret(ctx, "dependabotSecretResource", &github.DependabotSecretArgs{
Repository: pulumi.String("string"),
SecretName: pulumi.String("string"),
EncryptedValue: pulumi.String("string"),
PlaintextValue: pulumi.String("string"),
})
var dependabotSecretResource = new DependabotSecret("dependabotSecretResource", DependabotSecretArgs.builder()
.repository("string")
.secretName("string")
.encryptedValue("string")
.plaintextValue("string")
.build());
dependabot_secret_resource = github.DependabotSecret("dependabotSecretResource",
repository="string",
secret_name="string",
encrypted_value="string",
plaintext_value="string")
const dependabotSecretResource = new github.DependabotSecret("dependabotSecretResource", {
repository: "string",
secretName: "string",
encryptedValue: "string",
plaintextValue: "string",
});
type: github:DependabotSecret
properties:
encryptedValue: string
plaintextValue: string
repository: string
secretName: string
DependabotSecret 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 DependabotSecret resource accepts the following input properties:
- Repository string
- Secret
Name string - Encrypted
Value string - Plaintext
Value string
- Repository string
- Secret
Name string - Encrypted
Value string - Plaintext
Value string
- repository String
- secret
Name String - encrypted
Value String - plaintext
Value String
- repository string
- secret
Name string - encrypted
Value string - plaintext
Value string
- repository str
- secret_
name str - encrypted_
value str - plaintext_
value str
- repository String
- secret
Name String - encrypted
Value String - plaintext
Value String
Outputs
All input properties are implicitly available as output properties. Additionally, the DependabotSecret resource produces the following output properties:
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str
Look up Existing DependabotSecret Resource
Get an existing DependabotSecret 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?: DependabotSecretState, opts?: CustomResourceOptions): DependabotSecret@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,
repository: Optional[str] = None,
secret_name: Optional[str] = None,
updated_at: Optional[str] = None) -> DependabotSecretfunc GetDependabotSecret(ctx *Context, name string, id IDInput, state *DependabotSecretState, opts ...ResourceOption) (*DependabotSecret, error)public static DependabotSecret Get(string name, Input<string> id, DependabotSecretState? state, CustomResourceOptions? opts = null)public static DependabotSecret get(String name, Output<String> id, DependabotSecretState state, CustomResourceOptions options)resources: _: type: github:DependabotSecret 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 - Encrypted
Value string - Plaintext
Value string - Repository string
- Secret
Name string - Updated
At string
- Created
At string - Encrypted
Value string - Plaintext
Value string - Repository string
- Secret
Name string - Updated
At string
- created
At String - encrypted
Value String - plaintext
Value String - repository String
- secret
Name String - updated
At String
- created
At string - encrypted
Value string - plaintext
Value string - repository string
- secret
Name string - updated
At string
- created_
at str - encrypted_
value str - plaintext_
value str - repository str
- secret_
name str - updated_
at str
- created
At String - encrypted
Value String - plaintext
Value String - repository String
- secret
Name String - updated
At String
Package Details
- Repository
- GitHub pulumi/pulumi-github
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
githubTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
