1. Packages
  2. Azure Native
  3. API Docs
  4. automation
  5. Variable
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.20.1 published on Friday, Dec 1, 2023 by Pulumi

azure-native.automation.Variable

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.20.1 published on Friday, Dec 1, 2023 by Pulumi

    Definition of the variable. Azure REST API version: 2022-08-08. Prior API version in Azure Native 1.x: 2019-06-01.

    Other available API versions: 2023-05-15-preview, 2023-11-01.

    Example Usage

    Create or update a variable

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var variable = new AzureNative.Automation.Variable("variable", new()
        {
            AutomationAccountName = "sampleAccount9",
            Description = "my description",
            IsEncrypted = false,
            Name = "sampleVariable",
            ResourceGroupName = "rg",
            Value = "\"ComputerName.domain.com\"",
            VariableName = "sampleVariable",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/automation/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := automation.NewVariable(ctx, "variable", &automation.VariableArgs{
    			AutomationAccountName: pulumi.String("sampleAccount9"),
    			Description:           pulumi.String("my description"),
    			IsEncrypted:           pulumi.Bool(false),
    			Name:                  pulumi.String("sampleVariable"),
    			ResourceGroupName:     pulumi.String("rg"),
    			Value:                 pulumi.String("\"ComputerName.domain.com\""),
    			VariableName:          pulumi.String("sampleVariable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.automation.Variable;
    import com.pulumi.azurenative.automation.VariableArgs;
    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 variable = new Variable("variable", VariableArgs.builder()        
                .automationAccountName("sampleAccount9")
                .description("my description")
                .isEncrypted(false)
                .name("sampleVariable")
                .resourceGroupName("rg")
                .value("\"ComputerName.domain.com\"")
                .variableName("sampleVariable")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    variable = azure_native.automation.Variable("variable",
        automation_account_name="sampleAccount9",
        description="my description",
        is_encrypted=False,
        name="sampleVariable",
        resource_group_name="rg",
        value="\"ComputerName.domain.com\"",
        variable_name="sampleVariable")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const variable = new azure_native.automation.Variable("variable", {
        automationAccountName: "sampleAccount9",
        description: "my description",
        isEncrypted: false,
        name: "sampleVariable",
        resourceGroupName: "rg",
        value: "\"ComputerName.domain.com\"",
        variableName: "sampleVariable",
    });
    
    resources:
      variable:
        type: azure-native:automation:Variable
        properties:
          automationAccountName: sampleAccount9
          description: my description
          isEncrypted: false
          name: sampleVariable
          resourceGroupName: rg
          value: '"ComputerName.domain.com"'
          variableName: sampleVariable
    

    Create Variable Resource

    new Variable(name: string, args: VariableArgs, opts?: CustomResourceOptions);
    @overload
    def Variable(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 automation_account_name: Optional[str] = None,
                 description: Optional[str] = None,
                 is_encrypted: Optional[bool] = None,
                 name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 value: Optional[str] = None,
                 variable_name: Optional[str] = None)
    @overload
    def Variable(resource_name: str,
                 args: VariableArgs,
                 opts: Optional[ResourceOptions] = None)
    func NewVariable(ctx *Context, name string, args VariableArgs, opts ...ResourceOption) (*Variable, error)
    public Variable(string name, VariableArgs args, CustomResourceOptions? opts = null)
    public Variable(String name, VariableArgs args)
    public Variable(String name, VariableArgs args, CustomResourceOptions options)
    
    type: azure-native:automation:Variable
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args VariableArgs
    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 VariableArgs
    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 VariableArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VariableArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VariableArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Variable 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 Variable resource accepts the following input properties:

    AutomationAccountName string

    The name of the automation account.

    Name string

    Gets or sets the name of the variable.

    ResourceGroupName string

    Name of an Azure Resource group.

    Description string

    Gets or sets the description of the variable.

    IsEncrypted bool

    Gets or sets the encrypted flag of the variable.

    Value string

    Gets or sets the value of the variable.

    VariableName string

    The variable name.

    AutomationAccountName string

    The name of the automation account.

    Name string

    Gets or sets the name of the variable.

    ResourceGroupName string

    Name of an Azure Resource group.

    Description string

    Gets or sets the description of the variable.

    IsEncrypted bool

    Gets or sets the encrypted flag of the variable.

    Value string

    Gets or sets the value of the variable.

    VariableName string

    The variable name.

    automationAccountName String

    The name of the automation account.

    name String

    Gets or sets the name of the variable.

    resourceGroupName String

    Name of an Azure Resource group.

    description String

    Gets or sets the description of the variable.

    isEncrypted Boolean

    Gets or sets the encrypted flag of the variable.

    value String

    Gets or sets the value of the variable.

    variableName String

    The variable name.

    automationAccountName string

    The name of the automation account.

    name string

    Gets or sets the name of the variable.

    resourceGroupName string

    Name of an Azure Resource group.

    description string

    Gets or sets the description of the variable.

    isEncrypted boolean

    Gets or sets the encrypted flag of the variable.

    value string

    Gets or sets the value of the variable.

    variableName string

    The variable name.

    automation_account_name str

    The name of the automation account.

    name str

    Gets or sets the name of the variable.

    resource_group_name str

    Name of an Azure Resource group.

    description str

    Gets or sets the description of the variable.

    is_encrypted bool

    Gets or sets the encrypted flag of the variable.

    value str

    Gets or sets the value of the variable.

    variable_name str

    The variable name.

    automationAccountName String

    The name of the automation account.

    name String

    Gets or sets the name of the variable.

    resourceGroupName String

    Name of an Azure Resource group.

    description String

    Gets or sets the description of the variable.

    isEncrypted Boolean

    Gets or sets the encrypted flag of the variable.

    value String

    Gets or sets the value of the variable.

    variableName String

    The variable name.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Type string

    The type of the resource.

    CreationTime string

    Gets or sets the creation time.

    LastModifiedTime string

    Gets or sets the last modified time.

    Id string

    The provider-assigned unique ID for this managed resource.

    Type string

    The type of the resource.

    CreationTime string

    Gets or sets the creation time.

    LastModifiedTime string

    Gets or sets the last modified time.

    id String

    The provider-assigned unique ID for this managed resource.

    type String

    The type of the resource.

    creationTime String

    Gets or sets the creation time.

    lastModifiedTime String

    Gets or sets the last modified time.

    id string

    The provider-assigned unique ID for this managed resource.

    type string

    The type of the resource.

    creationTime string

    Gets or sets the creation time.

    lastModifiedTime string

    Gets or sets the last modified time.

    id str

    The provider-assigned unique ID for this managed resource.

    type str

    The type of the resource.

    creation_time str

    Gets or sets the creation time.

    last_modified_time str

    Gets or sets the last modified time.

    id String

    The provider-assigned unique ID for this managed resource.

    type String

    The type of the resource.

    creationTime String

    Gets or sets the creation time.

    lastModifiedTime String

    Gets or sets the last modified time.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:automation:Variable sampleVariable /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/variables/{variableName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.20.1 published on Friday, Dec 1, 2023 by Pulumi