1. Packages
  2. Azure Classic
  3. API Docs
  4. automation
  5. SourceControl

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.automation.SourceControl

Explore with Pulumi AI

Manages an Automation Source Control.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleAccount = new azure.automation.Account("example", {
    name: "example-account",
    location: example.location,
    resourceGroupName: example.name,
    skuName: "Basic",
});
const exampleSourceControl = new azure.automation.SourceControl("example", {
    name: "example",
    automationAccountId: exampleAccount.id,
    folderPath: "runbook",
    security: {
        token: "ghp_xxx",
        tokenType: "PersonalAccessToken",
    },
    repositoryUrl: "https://github.com/foo/bat.git",
    sourceControlType: "GitHub",
    branch: "main",
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_account = azure.automation.Account("example",
    name="example-account",
    location=example.location,
    resource_group_name=example.name,
    sku_name="Basic")
example_source_control = azure.automation.SourceControl("example",
    name="example",
    automation_account_id=example_account.id,
    folder_path="runbook",
    security={
        "token": "ghp_xxx",
        "token_type": "PersonalAccessToken",
    },
    repository_url="https://github.com/foo/bat.git",
    source_control_type="GitHub",
    branch="main")
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleAccount, err := automation.NewAccount(ctx, "example", &automation.AccountArgs{
			Name:              pulumi.String("example-account"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			SkuName:           pulumi.String("Basic"),
		})
		if err != nil {
			return err
		}
		_, err = automation.NewSourceControl(ctx, "example", &automation.SourceControlArgs{
			Name:                pulumi.String("example"),
			AutomationAccountId: exampleAccount.ID(),
			FolderPath:          pulumi.String("runbook"),
			Security: &automation.SourceControlSecurityArgs{
				Token:     pulumi.String("ghp_xxx"),
				TokenType: pulumi.String("PersonalAccessToken"),
			},
			RepositoryUrl:     pulumi.String("https://github.com/foo/bat.git"),
			SourceControlType: pulumi.String("GitHub"),
			Branch:            pulumi.String("main"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleAccount = new Azure.Automation.Account("example", new()
    {
        Name = "example-account",
        Location = example.Location,
        ResourceGroupName = example.Name,
        SkuName = "Basic",
    });

    var exampleSourceControl = new Azure.Automation.SourceControl("example", new()
    {
        Name = "example",
        AutomationAccountId = exampleAccount.Id,
        FolderPath = "runbook",
        Security = new Azure.Automation.Inputs.SourceControlSecurityArgs
        {
            Token = "ghp_xxx",
            TokenType = "PersonalAccessToken",
        },
        RepositoryUrl = "https://github.com/foo/bat.git",
        SourceControlType = "GitHub",
        Branch = "main",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.automation.Account;
import com.pulumi.azure.automation.AccountArgs;
import com.pulumi.azure.automation.SourceControl;
import com.pulumi.azure.automation.SourceControlArgs;
import com.pulumi.azure.automation.inputs.SourceControlSecurityArgs;
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 ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
            .name("example-account")
            .location(example.location())
            .resourceGroupName(example.name())
            .skuName("Basic")
            .build());

        var exampleSourceControl = new SourceControl("exampleSourceControl", SourceControlArgs.builder()
            .name("example")
            .automationAccountId(exampleAccount.id())
            .folderPath("runbook")
            .security(SourceControlSecurityArgs.builder()
                .token("ghp_xxx")
                .tokenType("PersonalAccessToken")
                .build())
            .repositoryUrl("https://github.com/foo/bat.git")
            .sourceControlType("GitHub")
            .branch("main")
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAccount:
    type: azure:automation:Account
    name: example
    properties:
      name: example-account
      location: ${example.location}
      resourceGroupName: ${example.name}
      skuName: Basic
  exampleSourceControl:
    type: azure:automation:SourceControl
    name: example
    properties:
      name: example
      automationAccountId: ${exampleAccount.id}
      folderPath: runbook
      security:
        token: ghp_xxx
        tokenType: PersonalAccessToken
      repositoryUrl: https://github.com/foo/bat.git
      sourceControlType: GitHub
      branch: main
Copy

Create SourceControl Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SourceControl(name: string, args: SourceControlArgs, opts?: CustomResourceOptions);
@overload
def SourceControl(resource_name: str,
                  args: SourceControlArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def SourceControl(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  automation_account_id: Optional[str] = None,
                  folder_path: Optional[str] = None,
                  repository_url: Optional[str] = None,
                  security: Optional[SourceControlSecurityArgs] = None,
                  source_control_type: Optional[str] = None,
                  automatic_sync: Optional[bool] = None,
                  branch: Optional[str] = None,
                  description: Optional[str] = None,
                  name: Optional[str] = None,
                  publish_runbook_enabled: Optional[bool] = None)
func NewSourceControl(ctx *Context, name string, args SourceControlArgs, opts ...ResourceOption) (*SourceControl, error)
public SourceControl(string name, SourceControlArgs args, CustomResourceOptions? opts = null)
public SourceControl(String name, SourceControlArgs args)
public SourceControl(String name, SourceControlArgs args, CustomResourceOptions options)
type: azure:automation:SourceControl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SourceControlArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SourceControlArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SourceControlArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SourceControlArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SourceControlArgs
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 azureSourceControlResource = new Azure.Automation.SourceControl("azureSourceControlResource", new()
{
    AutomationAccountId = "string",
    FolderPath = "string",
    RepositoryUrl = "string",
    Security = new Azure.Automation.Inputs.SourceControlSecurityArgs
    {
        Token = "string",
        TokenType = "string",
        RefreshToken = "string",
    },
    SourceControlType = "string",
    AutomaticSync = false,
    Branch = "string",
    Description = "string",
    Name = "string",
    PublishRunbookEnabled = false,
});
Copy
example, err := automation.NewSourceControl(ctx, "azureSourceControlResource", &automation.SourceControlArgs{
	AutomationAccountId: pulumi.String("string"),
	FolderPath:          pulumi.String("string"),
	RepositoryUrl:       pulumi.String("string"),
	Security: &automation.SourceControlSecurityArgs{
		Token:        pulumi.String("string"),
		TokenType:    pulumi.String("string"),
		RefreshToken: pulumi.String("string"),
	},
	SourceControlType:     pulumi.String("string"),
	AutomaticSync:         pulumi.Bool(false),
	Branch:                pulumi.String("string"),
	Description:           pulumi.String("string"),
	Name:                  pulumi.String("string"),
	PublishRunbookEnabled: pulumi.Bool(false),
})
Copy
var azureSourceControlResource = new SourceControl("azureSourceControlResource", SourceControlArgs.builder()
    .automationAccountId("string")
    .folderPath("string")
    .repositoryUrl("string")
    .security(SourceControlSecurityArgs.builder()
        .token("string")
        .tokenType("string")
        .refreshToken("string")
        .build())
    .sourceControlType("string")
    .automaticSync(false)
    .branch("string")
    .description("string")
    .name("string")
    .publishRunbookEnabled(false)
    .build());
Copy
azure_source_control_resource = azure.automation.SourceControl("azureSourceControlResource",
    automation_account_id="string",
    folder_path="string",
    repository_url="string",
    security={
        "token": "string",
        "token_type": "string",
        "refresh_token": "string",
    },
    source_control_type="string",
    automatic_sync=False,
    branch="string",
    description="string",
    name="string",
    publish_runbook_enabled=False)
Copy
const azureSourceControlResource = new azure.automation.SourceControl("azureSourceControlResource", {
    automationAccountId: "string",
    folderPath: "string",
    repositoryUrl: "string",
    security: {
        token: "string",
        tokenType: "string",
        refreshToken: "string",
    },
    sourceControlType: "string",
    automaticSync: false,
    branch: "string",
    description: "string",
    name: "string",
    publishRunbookEnabled: false,
});
Copy
type: azure:automation:SourceControl
properties:
    automaticSync: false
    automationAccountId: string
    branch: string
    description: string
    folderPath: string
    name: string
    publishRunbookEnabled: false
    repositoryUrl: string
    security:
        refreshToken: string
        token: string
        tokenType: string
    sourceControlType: string
Copy

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

AutomationAccountId
This property is required.
Changes to this property will trigger replacement.
string
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
FolderPath This property is required. string
The folder path of the source control. This Path must be relative.
RepositoryUrl This property is required. string
The Repository URL of the source control.
Security This property is required. SourceControlSecurity
A security block as defined below.
SourceControlType This property is required. string
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
AutomaticSync bool
Whether auto async the Source Control.
Branch string
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
Description string
A short description of the Source Control.
Name Changes to this property will trigger replacement. string
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
PublishRunbookEnabled bool
Whether auto publish the Source Control. Defaults to true.
AutomationAccountId
This property is required.
Changes to this property will trigger replacement.
string
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
FolderPath This property is required. string
The folder path of the source control. This Path must be relative.
RepositoryUrl This property is required. string
The Repository URL of the source control.
Security This property is required. SourceControlSecurityArgs
A security block as defined below.
SourceControlType This property is required. string
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
AutomaticSync bool
Whether auto async the Source Control.
Branch string
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
Description string
A short description of the Source Control.
Name Changes to this property will trigger replacement. string
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
PublishRunbookEnabled bool
Whether auto publish the Source Control. Defaults to true.
automationAccountId
This property is required.
Changes to this property will trigger replacement.
String
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
folderPath This property is required. String
The folder path of the source control. This Path must be relative.
repositoryUrl This property is required. String
The Repository URL of the source control.
security This property is required. SourceControlSecurity
A security block as defined below.
sourceControlType This property is required. String
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automaticSync Boolean
Whether auto async the Source Control.
branch String
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description String
A short description of the Source Control.
name Changes to this property will trigger replacement. String
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publishRunbookEnabled Boolean
Whether auto publish the Source Control. Defaults to true.
automationAccountId
This property is required.
Changes to this property will trigger replacement.
string
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
folderPath This property is required. string
The folder path of the source control. This Path must be relative.
repositoryUrl This property is required. string
The Repository URL of the source control.
security This property is required. SourceControlSecurity
A security block as defined below.
sourceControlType This property is required. string
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automaticSync boolean
Whether auto async the Source Control.
branch string
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description string
A short description of the Source Control.
name Changes to this property will trigger replacement. string
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publishRunbookEnabled boolean
Whether auto publish the Source Control. Defaults to true.
automation_account_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
folder_path This property is required. str
The folder path of the source control. This Path must be relative.
repository_url This property is required. str
The Repository URL of the source control.
security This property is required. SourceControlSecurityArgs
A security block as defined below.
source_control_type This property is required. str
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automatic_sync bool
Whether auto async the Source Control.
branch str
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description str
A short description of the Source Control.
name Changes to this property will trigger replacement. str
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publish_runbook_enabled bool
Whether auto publish the Source Control. Defaults to true.
automationAccountId
This property is required.
Changes to this property will trigger replacement.
String
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
folderPath This property is required. String
The folder path of the source control. This Path must be relative.
repositoryUrl This property is required. String
The Repository URL of the source control.
security This property is required. Property Map
A security block as defined below.
sourceControlType This property is required. String
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automaticSync Boolean
Whether auto async the Source Control.
branch String
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description String
A short description of the Source Control.
name Changes to this property will trigger replacement. String
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publishRunbookEnabled Boolean
Whether auto publish the Source Control. Defaults to true.

Outputs

All input properties are implicitly available as output properties. Additionally, the SourceControl 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 string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing SourceControl Resource

Get an existing SourceControl 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?: SourceControlState, opts?: CustomResourceOptions): SourceControl
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        automatic_sync: Optional[bool] = None,
        automation_account_id: Optional[str] = None,
        branch: Optional[str] = None,
        description: Optional[str] = None,
        folder_path: Optional[str] = None,
        name: Optional[str] = None,
        publish_runbook_enabled: Optional[bool] = None,
        repository_url: Optional[str] = None,
        security: Optional[SourceControlSecurityArgs] = None,
        source_control_type: Optional[str] = None) -> SourceControl
func GetSourceControl(ctx *Context, name string, id IDInput, state *SourceControlState, opts ...ResourceOption) (*SourceControl, error)
public static SourceControl Get(string name, Input<string> id, SourceControlState? state, CustomResourceOptions? opts = null)
public static SourceControl get(String name, Output<String> id, SourceControlState state, CustomResourceOptions options)
resources:  _:    type: azure:automation:SourceControl    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AutomaticSync bool
Whether auto async the Source Control.
AutomationAccountId Changes to this property will trigger replacement. string
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
Branch string
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
Description string
A short description of the Source Control.
FolderPath string
The folder path of the source control. This Path must be relative.
Name Changes to this property will trigger replacement. string
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
PublishRunbookEnabled bool
Whether auto publish the Source Control. Defaults to true.
RepositoryUrl string
The Repository URL of the source control.
Security SourceControlSecurity
A security block as defined below.
SourceControlType string
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
AutomaticSync bool
Whether auto async the Source Control.
AutomationAccountId Changes to this property will trigger replacement. string
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
Branch string
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
Description string
A short description of the Source Control.
FolderPath string
The folder path of the source control. This Path must be relative.
Name Changes to this property will trigger replacement. string
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
PublishRunbookEnabled bool
Whether auto publish the Source Control. Defaults to true.
RepositoryUrl string
The Repository URL of the source control.
Security SourceControlSecurityArgs
A security block as defined below.
SourceControlType string
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automaticSync Boolean
Whether auto async the Source Control.
automationAccountId Changes to this property will trigger replacement. String
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
branch String
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description String
A short description of the Source Control.
folderPath String
The folder path of the source control. This Path must be relative.
name Changes to this property will trigger replacement. String
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publishRunbookEnabled Boolean
Whether auto publish the Source Control. Defaults to true.
repositoryUrl String
The Repository URL of the source control.
security SourceControlSecurity
A security block as defined below.
sourceControlType String
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automaticSync boolean
Whether auto async the Source Control.
automationAccountId Changes to this property will trigger replacement. string
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
branch string
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description string
A short description of the Source Control.
folderPath string
The folder path of the source control. This Path must be relative.
name Changes to this property will trigger replacement. string
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publishRunbookEnabled boolean
Whether auto publish the Source Control. Defaults to true.
repositoryUrl string
The Repository URL of the source control.
security SourceControlSecurity
A security block as defined below.
sourceControlType string
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automatic_sync bool
Whether auto async the Source Control.
automation_account_id Changes to this property will trigger replacement. str
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
branch str
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description str
A short description of the Source Control.
folder_path str
The folder path of the source control. This Path must be relative.
name Changes to this property will trigger replacement. str
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publish_runbook_enabled bool
Whether auto publish the Source Control. Defaults to true.
repository_url str
The Repository URL of the source control.
security SourceControlSecurityArgs
A security block as defined below.
source_control_type str
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.
automaticSync Boolean
Whether auto async the Source Control.
automationAccountId Changes to this property will trigger replacement. String
The ID of Automation Account to manage this Source Control. Changing this forces a new Automation Source Control to be created.
branch String
Specify the repo branch of the Source Control. Empty value is valid only for VsoTfvc.
description String
A short description of the Source Control.
folderPath String
The folder path of the source control. This Path must be relative.
name Changes to this property will trigger replacement. String
The name which should be used for this Automation Source Control. Changing this forces a new Automation Source Control to be created.
publishRunbookEnabled Boolean
Whether auto publish the Source Control. Defaults to true.
repositoryUrl String
The Repository URL of the source control.
security Property Map
A security block as defined below.
sourceControlType String
The source type of Source Control, possible vaules are VsoGit, VsoTfvc and GitHub, and the value is case sensitive.

Supporting Types

SourceControlSecurity
, SourceControlSecurityArgs

Token This property is required. string
The access token of specified repo.
TokenType This property is required. string
Specify the token type, possible values are PersonalAccessToken and Oauth.
RefreshToken string
The refresh token of specified rpeo.
Token This property is required. string
The access token of specified repo.
TokenType This property is required. string
Specify the token type, possible values are PersonalAccessToken and Oauth.
RefreshToken string
The refresh token of specified rpeo.
token This property is required. String
The access token of specified repo.
tokenType This property is required. String
Specify the token type, possible values are PersonalAccessToken and Oauth.
refreshToken String
The refresh token of specified rpeo.
token This property is required. string
The access token of specified repo.
tokenType This property is required. string
Specify the token type, possible values are PersonalAccessToken and Oauth.
refreshToken string
The refresh token of specified rpeo.
token This property is required. str
The access token of specified repo.
token_type This property is required. str
Specify the token type, possible values are PersonalAccessToken and Oauth.
refresh_token str
The refresh token of specified rpeo.
token This property is required. String
The access token of specified repo.
tokenType This property is required. String
Specify the token type, possible values are PersonalAccessToken and Oauth.
refreshToken String
The refresh token of specified rpeo.

Import

Automations can be imported using the resource id, e.g.

$ pulumi import azure:automation/sourceControl:SourceControl example /subscriptions/12345678-1234-9876-4563-123456789012/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1/sourceControls/sc1
Copy

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

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.