1. Packages
  2. Azure Native v2
  3. API Docs
  4. devspaces
  5. Controller
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.devspaces.Controller

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Azure REST API version: 2019-04-01. Prior API version in Azure Native 1.x: 2019-04-01.

Example Usage

ControllersCreate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var controller = new AzureNative.DevSpaces.Controller("controller", new()
    {
        Location = "eastus",
        Name = "myControllerResource",
        ResourceGroupName = "myResourceGroup",
        Sku = new AzureNative.DevSpaces.Inputs.SkuArgs
        {
            Name = AzureNative.DevSpaces.SkuName.S1,
            Tier = AzureNative.DevSpaces.SkuTier.Standard,
        },
        Tags = null,
        TargetContainerHostCredentialsBase64 = "QmFzZTY0IEVuY29kZWQgVmFsdWUK",
        TargetContainerHostResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myCluster",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := devspaces.NewController(ctx, "controller", &devspaces.ControllerArgs{
			Location:          pulumi.String("eastus"),
			Name:              pulumi.String("myControllerResource"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			Sku: &devspaces.SkuArgs{
				Name: pulumi.String(devspaces.SkuNameS1),
				Tier: pulumi.String(devspaces.SkuTierStandard),
			},
			Tags:                                 pulumi.StringMap{},
			TargetContainerHostCredentialsBase64: pulumi.String("QmFzZTY0IEVuY29kZWQgVmFsdWUK"),
			TargetContainerHostResourceId:        pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myCluster"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.devspaces.Controller;
import com.pulumi.azurenative.devspaces.ControllerArgs;
import com.pulumi.azurenative.devspaces.inputs.SkuArgs;
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 controller = new Controller("controller", ControllerArgs.builder()
            .location("eastus")
            .name("myControllerResource")
            .resourceGroupName("myResourceGroup")
            .sku(SkuArgs.builder()
                .name("S1")
                .tier("Standard")
                .build())
            .tags()
            .targetContainerHostCredentialsBase64("QmFzZTY0IEVuY29kZWQgVmFsdWUK")
            .targetContainerHostResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myCluster")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const controller = new azure_native.devspaces.Controller("controller", {
    location: "eastus",
    name: "myControllerResource",
    resourceGroupName: "myResourceGroup",
    sku: {
        name: azure_native.devspaces.SkuName.S1,
        tier: azure_native.devspaces.SkuTier.Standard,
    },
    tags: {},
    targetContainerHostCredentialsBase64: "QmFzZTY0IEVuY29kZWQgVmFsdWUK",
    targetContainerHostResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myCluster",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

controller = azure_native.devspaces.Controller("controller",
    location="eastus",
    name="myControllerResource",
    resource_group_name="myResourceGroup",
    sku={
        "name": azure_native.devspaces.SkuName.S1,
        "tier": azure_native.devspaces.SkuTier.STANDARD,
    },
    tags={},
    target_container_host_credentials_base64="QmFzZTY0IEVuY29kZWQgVmFsdWUK",
    target_container_host_resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myCluster")
Copy
resources:
  controller:
    type: azure-native:devspaces:Controller
    properties:
      location: eastus
      name: myControllerResource
      resourceGroupName: myResourceGroup
      sku:
        name: S1
        tier: Standard
      tags: {}
      targetContainerHostCredentialsBase64: QmFzZTY0IEVuY29kZWQgVmFsdWUK
      targetContainerHostResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/managedClusters/myCluster
Copy

Create Controller Resource

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

Constructor syntax

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

@overload
def Controller(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resource_group_name: Optional[str] = None,
               sku: Optional[SkuArgs] = None,
               target_container_host_credentials_base64: Optional[str] = None,
               target_container_host_resource_id: Optional[str] = None,
               location: Optional[str] = None,
               name: Optional[str] = None,
               tags: Optional[Mapping[str, str]] = None)
func NewController(ctx *Context, name string, args ControllerArgs, opts ...ResourceOption) (*Controller, error)
public Controller(string name, ControllerArgs args, CustomResourceOptions? opts = null)
public Controller(String name, ControllerArgs args)
public Controller(String name, ControllerArgs args, CustomResourceOptions options)
type: azure-native:devspaces:Controller
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. ControllerArgs
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. ControllerArgs
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. ControllerArgs
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. ControllerArgs
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. ControllerArgs
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 controllerResource = new AzureNative.Devspaces.Controller("controllerResource", new()
{
    ResourceGroupName = "string",
    Sku = 
    {
        { "name", "string" },
        { "tier", "string" },
    },
    TargetContainerHostCredentialsBase64 = "string",
    TargetContainerHostResourceId = "string",
    Location = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := devspaces.NewController(ctx, "controllerResource", &devspaces.ControllerArgs{
	ResourceGroupName: "string",
	Sku: map[string]interface{}{
		"name": "string",
		"tier": "string",
	},
	TargetContainerHostCredentialsBase64: "string",
	TargetContainerHostResourceId:        "string",
	Location:                             "string",
	Name:                                 "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var controllerResource = new Controller("controllerResource", ControllerArgs.builder()
    .resourceGroupName("string")
    .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .targetContainerHostCredentialsBase64("string")
    .targetContainerHostResourceId("string")
    .location("string")
    .name("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
controller_resource = azure_native.devspaces.Controller("controllerResource",
    resource_group_name=string,
    sku={
        name: string,
        tier: string,
    },
    target_container_host_credentials_base64=string,
    target_container_host_resource_id=string,
    location=string,
    name=string,
    tags={
        string: string,
    })
Copy
const controllerResource = new azure_native.devspaces.Controller("controllerResource", {
    resourceGroupName: "string",
    sku: {
        name: "string",
        tier: "string",
    },
    targetContainerHostCredentialsBase64: "string",
    targetContainerHostResourceId: "string",
    location: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:devspaces:Controller
properties:
    location: string
    name: string
    resourceGroupName: string
    sku:
        name: string
        tier: string
    tags:
        string: string
    targetContainerHostCredentialsBase64: string
    targetContainerHostResourceId: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Resource group to which the resource belongs.
Sku This property is required. Pulumi.AzureNative.DevSpaces.Inputs.Sku
Model representing SKU for Azure Dev Spaces Controller.
TargetContainerHostCredentialsBase64
This property is required.
Changes to this property will trigger replacement.
string
Credentials of the target container host (base64).
TargetContainerHostResourceId
This property is required.
Changes to this property will trigger replacement.
string
Resource ID of the target container host
Location Changes to this property will trigger replacement. string
Region where the Azure resource is located.
Name Changes to this property will trigger replacement. string
Name of the resource.
Tags Dictionary<string, string>
Tags for the Azure resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Resource group to which the resource belongs.
Sku This property is required. SkuArgs
Model representing SKU for Azure Dev Spaces Controller.
TargetContainerHostCredentialsBase64
This property is required.
Changes to this property will trigger replacement.
string
Credentials of the target container host (base64).
TargetContainerHostResourceId
This property is required.
Changes to this property will trigger replacement.
string
Resource ID of the target container host
Location Changes to this property will trigger replacement. string
Region where the Azure resource is located.
Name Changes to this property will trigger replacement. string
Name of the resource.
Tags map[string]string
Tags for the Azure resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Resource group to which the resource belongs.
sku This property is required. Sku
Model representing SKU for Azure Dev Spaces Controller.
targetContainerHostCredentialsBase64
This property is required.
Changes to this property will trigger replacement.
String
Credentials of the target container host (base64).
targetContainerHostResourceId
This property is required.
Changes to this property will trigger replacement.
String
Resource ID of the target container host
location Changes to this property will trigger replacement. String
Region where the Azure resource is located.
name Changes to this property will trigger replacement. String
Name of the resource.
tags Map<String,String>
Tags for the Azure resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Resource group to which the resource belongs.
sku This property is required. Sku
Model representing SKU for Azure Dev Spaces Controller.
targetContainerHostCredentialsBase64
This property is required.
Changes to this property will trigger replacement.
string
Credentials of the target container host (base64).
targetContainerHostResourceId
This property is required.
Changes to this property will trigger replacement.
string
Resource ID of the target container host
location Changes to this property will trigger replacement. string
Region where the Azure resource is located.
name Changes to this property will trigger replacement. string
Name of the resource.
tags {[key: string]: string}
Tags for the Azure resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Resource group to which the resource belongs.
sku This property is required. SkuArgs
Model representing SKU for Azure Dev Spaces Controller.
target_container_host_credentials_base64
This property is required.
Changes to this property will trigger replacement.
str
Credentials of the target container host (base64).
target_container_host_resource_id
This property is required.
Changes to this property will trigger replacement.
str
Resource ID of the target container host
location Changes to this property will trigger replacement. str
Region where the Azure resource is located.
name Changes to this property will trigger replacement. str
Name of the resource.
tags Mapping[str, str]
Tags for the Azure resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Resource group to which the resource belongs.
sku This property is required. Property Map
Model representing SKU for Azure Dev Spaces Controller.
targetContainerHostCredentialsBase64
This property is required.
Changes to this property will trigger replacement.
String
Credentials of the target container host (base64).
targetContainerHostResourceId
This property is required.
Changes to this property will trigger replacement.
String
Resource ID of the target container host
location Changes to this property will trigger replacement. String
Region where the Azure resource is located.
name Changes to this property will trigger replacement. String
Name of the resource.
tags Map<String>
Tags for the Azure resource.

Outputs

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

DataPlaneFqdn string
DNS name for accessing DataPlane services
HostSuffix string
DNS suffix for public endpoints running in the Azure Dev Spaces Controller.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the Azure Dev Spaces Controller.
TargetContainerHostApiServerFqdn string
DNS of the target container host's API server
Type string
The type of the resource.
DataPlaneFqdn string
DNS name for accessing DataPlane services
HostSuffix string
DNS suffix for public endpoints running in the Azure Dev Spaces Controller.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
Provisioning state of the Azure Dev Spaces Controller.
TargetContainerHostApiServerFqdn string
DNS of the target container host's API server
Type string
The type of the resource.
dataPlaneFqdn String
DNS name for accessing DataPlane services
hostSuffix String
DNS suffix for public endpoints running in the Azure Dev Spaces Controller.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the Azure Dev Spaces Controller.
targetContainerHostApiServerFqdn String
DNS of the target container host's API server
type String
The type of the resource.
dataPlaneFqdn string
DNS name for accessing DataPlane services
hostSuffix string
DNS suffix for public endpoints running in the Azure Dev Spaces Controller.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
Provisioning state of the Azure Dev Spaces Controller.
targetContainerHostApiServerFqdn string
DNS of the target container host's API server
type string
The type of the resource.
data_plane_fqdn str
DNS name for accessing DataPlane services
host_suffix str
DNS suffix for public endpoints running in the Azure Dev Spaces Controller.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
Provisioning state of the Azure Dev Spaces Controller.
target_container_host_api_server_fqdn str
DNS of the target container host's API server
type str
The type of the resource.
dataPlaneFqdn String
DNS name for accessing DataPlane services
hostSuffix String
DNS suffix for public endpoints running in the Azure Dev Spaces Controller.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
Provisioning state of the Azure Dev Spaces Controller.
targetContainerHostApiServerFqdn String
DNS of the target container host's API server
type String
The type of the resource.

Supporting Types

Sku
, SkuArgs

Name This property is required. string | Pulumi.AzureNative.DevSpaces.SkuName
The name of the SKU for Azure Dev Spaces Controller.
Tier string | Pulumi.AzureNative.DevSpaces.SkuTier
The tier of the SKU for Azure Dev Spaces Controller.
Name This property is required. string | SkuName
The name of the SKU for Azure Dev Spaces Controller.
Tier string | SkuTier
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. String | SkuName
The name of the SKU for Azure Dev Spaces Controller.
tier String | SkuTier
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. string | SkuName
The name of the SKU for Azure Dev Spaces Controller.
tier string | SkuTier
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. str | SkuName
The name of the SKU for Azure Dev Spaces Controller.
tier str | SkuTier
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. String | "S1"
The name of the SKU for Azure Dev Spaces Controller.
tier String | "Standard"
The tier of the SKU for Azure Dev Spaces Controller.

SkuName
, SkuNameArgs

S1
S1
SkuNameS1
S1
S1
S1
S1
S1
S1
S1
"S1"
S1

SkuResponse
, SkuResponseArgs

Name This property is required. string
The name of the SKU for Azure Dev Spaces Controller.
Tier string
The tier of the SKU for Azure Dev Spaces Controller.
Name This property is required. string
The name of the SKU for Azure Dev Spaces Controller.
Tier string
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. String
The name of the SKU for Azure Dev Spaces Controller.
tier String
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. string
The name of the SKU for Azure Dev Spaces Controller.
tier string
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. str
The name of the SKU for Azure Dev Spaces Controller.
tier str
The tier of the SKU for Azure Dev Spaces Controller.
name This property is required. String
The name of the SKU for Azure Dev Spaces Controller.
tier String
The tier of the SKU for Azure Dev Spaces Controller.

SkuTier
, SkuTierArgs

Standard
Standard
SkuTierStandard
Standard
Standard
Standard
Standard
Standard
STANDARD
Standard
"Standard"
Standard

Import

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

$ pulumi import azure-native:devspaces:Controller myControllerResource /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevSpaces/controllers/{name} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi