netlify.DeployKey
Explore with Pulumi AI
Deploy key for Git repositories. Avoid creating this resource directly if possible. Read more
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as netlify from "@pulumi/netlify";
const common = new netlify.DeployKey("common", {});
import pulumi
import pulumi_netlify as netlify
common = netlify.DeployKey("common")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/netlify/netlify"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := netlify.NewDeployKey(ctx, "common", nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Netlify = Pulumi.Netlify;
return await Deployment.RunAsync(() =>
{
var common = new Netlify.DeployKey("common");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.netlify.DeployKey;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var common = new DeployKey("common");
}
}
resources:
common:
type: netlify:DeployKey
Create DeployKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DeployKey(name: string, args?: DeployKeyArgs, opts?: CustomResourceOptions);
@overload
def DeployKey(resource_name: str,
args: Optional[DeployKeyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def DeployKey(resource_name: str,
opts: Optional[ResourceOptions] = None)
func NewDeployKey(ctx *Context, name string, args *DeployKeyArgs, opts ...ResourceOption) (*DeployKey, error)
public DeployKey(string name, DeployKeyArgs? args = null, CustomResourceOptions? opts = null)
public DeployKey(String name, DeployKeyArgs args)
public DeployKey(String name, DeployKeyArgs args, CustomResourceOptions options)
type: netlify:DeployKey
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 DeployKeyArgs
- 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 DeployKeyArgs
- 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 DeployKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DeployKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DeployKeyArgs
- 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 deployKeyResource = new Netlify.DeployKey("deployKeyResource");
example, err := netlify.NewDeployKey(ctx, "deployKeyResource", nil)
var deployKeyResource = new DeployKey("deployKeyResource");
deploy_key_resource = netlify.DeployKey("deployKeyResource")
const deployKeyResource = new netlify.DeployKey("deployKeyResource", {});
type: netlify:DeployKey
properties: {}
DeployKey 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 DeployKey resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the DeployKey resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated string - Public
Key string
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Updated string - Public
Key string
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated String - public
Key String
- id string
- The provider-assigned unique ID for this managed resource.
- last
Updated string - public
Key string
- id str
- The provider-assigned unique ID for this managed resource.
- last_
updated str - public_
key str
- id String
- The provider-assigned unique ID for this managed resource.
- last
Updated String - public
Key String
Look up Existing DeployKey Resource
Get an existing DeployKey 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?: DeployKeyState, opts?: CustomResourceOptions): DeployKey
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
last_updated: Optional[str] = None,
public_key: Optional[str] = None) -> DeployKey
func GetDeployKey(ctx *Context, name string, id IDInput, state *DeployKeyState, opts ...ResourceOption) (*DeployKey, error)
public static DeployKey Get(string name, Input<string> id, DeployKeyState? state, CustomResourceOptions? opts = null)
public static DeployKey get(String name, Output<String> id, DeployKeyState state, CustomResourceOptions options)
resources: _: type: netlify:DeployKey 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.
- Last
Updated string - Public
Key string
- Last
Updated string - Public
Key string
- last
Updated String - public
Key String
- last
Updated string - public
Key string
- last_
updated str - public_
key str
- last
Updated String - public
Key String
Import
Import a deploy key by its ID
$ pulumi import netlify:index/deployKey:DeployKey common 6600abcdef1234567890abcd
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- netlify netlify/terraform-provider-netlify
- License
- Notes
- This Pulumi package is based on the
netlify
Terraform Provider.