1. Packages
  2. GitLab
  3. API Docs
  4. DeployKey
GitLab v6.10.0 published on Monday, Mar 25, 2024 by Pulumi

gitlab.DeployKey

Explore with Pulumi AI

gitlab logo
GitLab v6.10.0 published on Monday, Mar 25, 2024 by Pulumi

    The gitlab.DeployKey resource allows to manage the lifecycle of a deploy key.

    To enable an already existing deploy key for another project use the gitlab_project_deploy_key resource.

    Upstream API: GitLab REST API docs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gitlab from "@pulumi/gitlab";
    
    const example = new gitlab.DeployKey("example", {
        key: "ssh-ed25519 AAAA...",
        project: "example/deploying",
        title: "Example deploy key",
    });
    
    import pulumi
    import pulumi_gitlab as gitlab
    
    example = gitlab.DeployKey("example",
        key="ssh-ed25519 AAAA...",
        project="example/deploying",
        title="Example deploy key")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gitlab/sdk/v6/go/gitlab"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gitlab.NewDeployKey(ctx, "example", &gitlab.DeployKeyArgs{
    			Key:     pulumi.String("ssh-ed25519 AAAA..."),
    			Project: pulumi.String("example/deploying"),
    			Title:   pulumi.String("Example deploy key"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using GitLab = Pulumi.GitLab;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new GitLab.DeployKey("example", new()
        {
            Key = "ssh-ed25519 AAAA...",
            Project = "example/deploying",
            Title = "Example deploy key",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gitlab.DeployKey;
    import com.pulumi.gitlab.DeployKeyArgs;
    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 example = new DeployKey("example", DeployKeyArgs.builder()        
                .key("ssh-ed25519 AAAA...")
                .project("example/deploying")
                .title("Example deploy key")
                .build());
    
        }
    }
    
    resources:
      example:
        type: gitlab:DeployKey
        properties:
          key: ssh-ed25519 AAAA...
          project: example/deploying
          title: Example deploy key
    

    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: DeployKeyArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def DeployKey(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  key: Optional[str] = None,
                  project: Optional[str] = None,
                  title: Optional[str] = None,
                  can_push: Optional[bool] = None)
    func NewDeployKey(ctx *Context, name string, args DeployKeyArgs, opts ...ResourceOption) (*DeployKey, error)
    public DeployKey(string name, DeployKeyArgs args, CustomResourceOptions? opts = null)
    public DeployKey(String name, DeployKeyArgs args)
    public DeployKey(String name, DeployKeyArgs args, CustomResourceOptions options)
    
    type: gitlab: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.

    Example

    The following reference example uses placeholder values for all input properties.

    var deployKeyResource = new GitLab.DeployKey("deployKeyResource", new()
    {
        Key = "string",
        Project = "string",
        Title = "string",
        CanPush = false,
    });
    
    example, err := gitlab.NewDeployKey(ctx, "deployKeyResource", &gitlab.DeployKeyArgs{
    	Key:     pulumi.String("string"),
    	Project: pulumi.String("string"),
    	Title:   pulumi.String("string"),
    	CanPush: pulumi.Bool(false),
    })
    
    var deployKeyResource = new DeployKey("deployKeyResource", DeployKeyArgs.builder()        
        .key("string")
        .project("string")
        .title("string")
        .canPush(false)
        .build());
    
    deploy_key_resource = gitlab.DeployKey("deployKeyResource",
        key="string",
        project="string",
        title="string",
        can_push=False)
    
    const deployKeyResource = new gitlab.DeployKey("deployKeyResource", {
        key: "string",
        project: "string",
        title: "string",
        canPush: false,
    });
    
    type: gitlab:DeployKey
    properties:
        canPush: false
        key: string
        project: string
        title: string
    

    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

    The DeployKey resource accepts the following input properties:

    Key string
    The public ssh key body.
    Project string
    The name or id of the project to add the deploy key to.
    Title string
    A title to describe the deploy key with.
    CanPush bool
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    Key string
    The public ssh key body.
    Project string
    The name or id of the project to add the deploy key to.
    Title string
    A title to describe the deploy key with.
    CanPush bool
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    key String
    The public ssh key body.
    project String
    The name or id of the project to add the deploy key to.
    title String
    A title to describe the deploy key with.
    canPush Boolean
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    key string
    The public ssh key body.
    project string
    The name or id of the project to add the deploy key to.
    title string
    A title to describe the deploy key with.
    canPush boolean
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    key str
    The public ssh key body.
    project str
    The name or id of the project to add the deploy key to.
    title str
    A title to describe the deploy key with.
    can_push bool
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    key String
    The public ssh key body.
    project String
    The name or id of the project to add the deploy key to.
    title String
    A title to describe the deploy key with.
    canPush Boolean
    Allow this deploy key to be used to push changes to the project. Defaults to false.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DeployKey resource produces the following output properties:

    DeployKeyId int
    The id of the project deploy key.
    Id string
    The provider-assigned unique ID for this managed resource.
    DeployKeyId int
    The id of the project deploy key.
    Id string
    The provider-assigned unique ID for this managed resource.
    deployKeyId Integer
    The id of the project deploy key.
    id String
    The provider-assigned unique ID for this managed resource.
    deployKeyId number
    The id of the project deploy key.
    id string
    The provider-assigned unique ID for this managed resource.
    deploy_key_id int
    The id of the project deploy key.
    id str
    The provider-assigned unique ID for this managed resource.
    deployKeyId Number
    The id of the project deploy key.
    id String
    The provider-assigned unique ID for this managed resource.

    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,
            can_push: Optional[bool] = None,
            deploy_key_id: Optional[int] = None,
            key: Optional[str] = None,
            project: Optional[str] = None,
            title: 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)
    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.
    The following state arguments are supported:
    CanPush bool
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    DeployKeyId int
    The id of the project deploy key.
    Key string
    The public ssh key body.
    Project string
    The name or id of the project to add the deploy key to.
    Title string
    A title to describe the deploy key with.
    CanPush bool
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    DeployKeyId int
    The id of the project deploy key.
    Key string
    The public ssh key body.
    Project string
    The name or id of the project to add the deploy key to.
    Title string
    A title to describe the deploy key with.
    canPush Boolean
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    deployKeyId Integer
    The id of the project deploy key.
    key String
    The public ssh key body.
    project String
    The name or id of the project to add the deploy key to.
    title String
    A title to describe the deploy key with.
    canPush boolean
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    deployKeyId number
    The id of the project deploy key.
    key string
    The public ssh key body.
    project string
    The name or id of the project to add the deploy key to.
    title string
    A title to describe the deploy key with.
    can_push bool
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    deploy_key_id int
    The id of the project deploy key.
    key str
    The public ssh key body.
    project str
    The name or id of the project to add the deploy key to.
    title str
    A title to describe the deploy key with.
    canPush Boolean
    Allow this deploy key to be used to push changes to the project. Defaults to false.
    deployKeyId Number
    The id of the project deploy key.
    key String
    The public ssh key body.
    project String
    The name or id of the project to add the deploy key to.
    title String
    A title to describe the deploy key with.

    Import

    GitLab deploy keys can be imported using an id made up of {project_id}:{deploy_key_id}, e.g.

    project_id can be whatever the [get single project api][get_single_project] takes for

    its :id value, so for example:

    $ pulumi import gitlab:index/deployKey:DeployKey test 1:3
    
    $ pulumi import gitlab:index/deployKey:DeployKey test richardc/example:3
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    GitLab pulumi/pulumi-gitlab
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the gitlab Terraform Provider.
    gitlab logo
    GitLab v6.10.0 published on Monday, Mar 25, 2024 by Pulumi