GroupVariable

This resource allows you to create and manage CI/CD variables for your GitLab groups. For further information on variables, consult the gitlab documentation.

Example Usage

using Pulumi;
using GitLab = Pulumi.GitLab;

class MyStack : Stack
{
    public MyStack()
    {
        var example = new GitLab.GroupVariable("example", new GitLab.GroupVariableArgs
        {
            Group = "12345",
            Key = "group_variable_key",
            Masked = false,
            Protected = false,
            Value = "group_variable_value",
        });
    }

}

Coming soon!

import pulumi
import pulumi_gitlab as gitlab

example = gitlab.GroupVariable("example",
    group="12345",
    key="group_variable_key",
    masked=False,
    protected=False,
    value="group_variable_value")
import * as pulumi from "@pulumi/pulumi";
import * as gitlab from "@pulumi/gitlab";

const example = new gitlab.GroupVariable("example", {
    group: "12345",
    key: "group_variable_key",
    masked: false,
    protected: false,
    value: "group_variable_value",
});

Create a GroupVariable Resource

def GroupVariable(resource_name, opts=None, group=None, key=None, masked=None, protected=None, value=None, variable_type=None, __props__=None);
name string
The unique name of the resource.
args GroupVariableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args GroupVariableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args GroupVariableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

GroupVariable Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The GroupVariable resource accepts the following input properties:

Group string

The name or id of the group to add the hook to.

Key string

The name of the variable.

Value string

The value of the variable.

Masked bool
Protected bool

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

VariableType string

The type of a variable. Available types are: env_var (default) and file.

Group string

The name or id of the group to add the hook to.

Key string

The name of the variable.

Value string

The value of the variable.

Masked bool
Protected bool

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

VariableType string

The type of a variable. Available types are: env_var (default) and file.

group string

The name or id of the group to add the hook to.

key string

The name of the variable.

value string

The value of the variable.

masked boolean
protected boolean

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

variableType string

The type of a variable. Available types are: env_var (default) and file.

group str

The name or id of the group to add the hook to.

key str

The name of the variable.

value str

The value of the variable.

masked bool
protected bool

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

variable_type str

The type of a variable. Available types are: env_var (default) and file.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing GroupVariable Resource

Get an existing GroupVariable 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?: GroupVariableState, opts?: CustomResourceOptions): GroupVariable
static get(resource_name, id, opts=None, group=None, key=None, masked=None, protected=None, value=None, variable_type=None, __props__=None);
func GetGroupVariable(ctx *Context, name string, id IDInput, state *GroupVariableState, opts ...ResourceOption) (*GroupVariable, error)
public static GroupVariable Get(string name, Input<string> id, GroupVariableState? state, CustomResourceOptions? opts = null)
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.

The following state arguments are supported:

Group string

The name or id of the group to add the hook to.

Key string

The name of the variable.

Masked bool
Protected bool

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

Value string

The value of the variable.

VariableType string

The type of a variable. Available types are: env_var (default) and file.

Group string

The name or id of the group to add the hook to.

Key string

The name of the variable.

Masked bool
Protected bool

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

Value string

The value of the variable.

VariableType string

The type of a variable. Available types are: env_var (default) and file.

group string

The name or id of the group to add the hook to.

key string

The name of the variable.

masked boolean
protected boolean

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

value string

The value of the variable.

variableType string

The type of a variable. Available types are: env_var (default) and file.

group str

The name or id of the group to add the hook to.

key str

The name of the variable.

masked bool
protected bool

If set to true, the variable will be passed only to pipelines running on protected branches and tags. Defaults to false.

value str

The value of the variable.

variable_type str

The type of a variable. Available types are: env_var (default) and file.

Package Details

Repository
https://github.com/pulumi/pulumi-gitlab
License
Apache-2.0
Notes
This Pulumi package is based on the gitlab Terraform Provider.