GetIntVariable

Use this data source to access information about an existing Automation Int Variable.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Azure.Automation.GetIntVariable.InvokeAsync(new Azure.Automation.GetIntVariableArgs
        {
            Name = "tfex-example-var",
            ResourceGroupName = "tfex-example-rg",
            AutomationAccountName = "tfex-example-account",
        }));
        this.VariableId = example.Apply(example => example.Id);
    }

    [Output("variableId")]
    public Output<string> VariableId { get; set; }
}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/automation"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        example, err := automation.LookupIntVariable(ctx, &automation.LookupIntVariableArgs{
            Name:                  "tfex-example-var",
            ResourceGroupName:     "tfex-example-rg",
            AutomationAccountName: "tfex-example-account",
        }, nil)
        if err != nil {
            return err
        }
        ctx.Export("variableId", example.Id)
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example = azure.automation.get_int_variable(name="tfex-example-var",
    resource_group_name="tfex-example-rg",
    automation_account_name="tfex-example-account")
pulumi.export("variableId", example.id)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = azure.automation.getIntVariable({
    name: "tfex-example-var",
    resourceGroupName: "tfex-example-rg",
    automationAccountName: "tfex-example-account",
});
export const variableId = example.then(example => example.id);

Using GetIntVariable

function getIntVariable(args: GetIntVariableArgs, opts?: InvokeOptions): Promise<GetIntVariableResult>
function  get_int_variable(automation_account_name=None, name=None, resource_group_name=None, opts=None)
func LookupIntVariable(ctx *Context, args *LookupIntVariableArgs, opts ...InvokeOption) (*LookupIntVariableResult, error)

Note: This function is named LookupIntVariable in the Go SDK.

public static class GetIntVariable {
    public static Task<GetIntVariableResult> InvokeAsync(GetIntVariableArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

AutomationAccountName string

The name of the automation account in which the Automation Variable exists.

Name string

The name of the Automation Variable.

ResourceGroupName string

The Name of the Resource Group where the automation account exists.

AutomationAccountName string

The name of the automation account in which the Automation Variable exists.

Name string

The name of the Automation Variable.

ResourceGroupName string

The Name of the Resource Group where the automation account exists.

automationAccountName string

The name of the automation account in which the Automation Variable exists.

name string

The name of the Automation Variable.

resourceGroupName string

The Name of the Resource Group where the automation account exists.

automation_account_name str

The name of the automation account in which the Automation Variable exists.

name str

The name of the Automation Variable.

resource_group_name str

The Name of the Resource Group where the automation account exists.

GetIntVariable Result

The following output properties are available:

AutomationAccountName string
Description string

The description of the Automation Variable.

Encrypted bool

Specifies if the Automation Variable is encrypted. Defaults to false.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ResourceGroupName string
Value int

The value of the Automation Variable as a integer.

AutomationAccountName string
Description string

The description of the Automation Variable.

Encrypted bool

Specifies if the Automation Variable is encrypted. Defaults to false.

Id string

The provider-assigned unique ID for this managed resource.

Name string
ResourceGroupName string
Value int

The value of the Automation Variable as a integer.

automationAccountName string
description string

The description of the Automation Variable.

encrypted boolean

Specifies if the Automation Variable is encrypted. Defaults to false.

id string

The provider-assigned unique ID for this managed resource.

name string
resourceGroupName string
value number

The value of the Automation Variable as a integer.

automation_account_name str
description str

The description of the Automation Variable.

encrypted bool

Specifies if the Automation Variable is encrypted. Defaults to false.

id str

The provider-assigned unique ID for this managed resource.

name str
resource_group_name str
value float

The value of the Automation Variable as a integer.

Package Details

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