We recommend using Azure Native.
azure.arckubernetes.ProvisionedCluster
Explore with Pulumi AI
Manages an Arc Kubernetes Provisioned Cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as azuread from "@pulumi/azuread";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const current = azure.core.getClientConfig({});
const exampleGroup = new azuread.Group("example", {
displayName: "example-adg",
owners: [current.then(current => current.objectId)],
securityEnabled: true,
});
const exampleProvisionedCluster = new azure.arckubernetes.ProvisionedCluster("example", {
name: "example-akpc",
resourceGroupName: example.name,
location: example.location,
azureActiveDirectory: {
azureRbacEnabled: true,
adminGroupObjectIds: [exampleGroup.id],
tenantId: current.then(current => current.tenantId),
},
identity: {
type: "SystemAssigned",
},
});
import pulumi
import pulumi_azure as azure
import pulumi_azuread as azuread
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
current = azure.core.get_client_config()
example_group = azuread.Group("example",
display_name="example-adg",
owners=[current.object_id],
security_enabled=True)
example_provisioned_cluster = azure.arckubernetes.ProvisionedCluster("example",
name="example-akpc",
resource_group_name=example.name,
location=example.location,
azure_active_directory={
"azure_rbac_enabled": True,
"admin_group_object_ids": [example_group.id],
"tenant_id": current.tenant_id,
},
identity={
"type": "SystemAssigned",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/arckubernetes"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azuread/sdk/v5/go/azuread"
"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
}
current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
exampleGroup, err := azuread.NewGroup(ctx, "example", &azuread.GroupArgs{
DisplayName: pulumi.String("example-adg"),
Owners: pulumi.StringArray{
pulumi.String(current.ObjectId),
},
SecurityEnabled: pulumi.Bool(true),
})
if err != nil {
return err
}
_, err = arckubernetes.NewProvisionedCluster(ctx, "example", &arckubernetes.ProvisionedClusterArgs{
Name: pulumi.String("example-akpc"),
ResourceGroupName: example.Name,
Location: example.Location,
AzureActiveDirectory: &arckubernetes.ProvisionedClusterAzureActiveDirectoryArgs{
AzureRbacEnabled: pulumi.Bool(true),
AdminGroupObjectIds: pulumi.StringArray{
exampleGroup.ID(),
},
TenantId: pulumi.String(current.TenantId),
},
Identity: &arckubernetes.ProvisionedClusterIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using AzureAD = Pulumi.AzureAD;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var current = Azure.Core.GetClientConfig.Invoke();
var exampleGroup = new AzureAD.Group("example", new()
{
DisplayName = "example-adg",
Owners = new[]
{
current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
},
SecurityEnabled = true,
});
var exampleProvisionedCluster = new Azure.ArcKubernetes.ProvisionedCluster("example", new()
{
Name = "example-akpc",
ResourceGroupName = example.Name,
Location = example.Location,
AzureActiveDirectory = new Azure.ArcKubernetes.Inputs.ProvisionedClusterAzureActiveDirectoryArgs
{
AzureRbacEnabled = true,
AdminGroupObjectIds = new[]
{
exampleGroup.Id,
},
TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
},
Identity = new Azure.ArcKubernetes.Inputs.ProvisionedClusterIdentityArgs
{
Type = "SystemAssigned",
},
});
});
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.core.CoreFunctions;
import com.pulumi.azuread.Group;
import com.pulumi.azuread.GroupArgs;
import com.pulumi.azure.arckubernetes.ProvisionedCluster;
import com.pulumi.azure.arckubernetes.ProvisionedClusterArgs;
import com.pulumi.azure.arckubernetes.inputs.ProvisionedClusterAzureActiveDirectoryArgs;
import com.pulumi.azure.arckubernetes.inputs.ProvisionedClusterIdentityArgs;
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());
final var current = CoreFunctions.getClientConfig();
var exampleGroup = new Group("exampleGroup", GroupArgs.builder()
.displayName("example-adg")
.owners(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
.securityEnabled(true)
.build());
var exampleProvisionedCluster = new ProvisionedCluster("exampleProvisionedCluster", ProvisionedClusterArgs.builder()
.name("example-akpc")
.resourceGroupName(example.name())
.location(example.location())
.azureActiveDirectory(ProvisionedClusterAzureActiveDirectoryArgs.builder()
.azureRbacEnabled(true)
.adminGroupObjectIds(exampleGroup.id())
.tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
.build())
.identity(ProvisionedClusterIdentityArgs.builder()
.type("SystemAssigned")
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleGroup:
type: azuread:Group
name: example
properties:
displayName: example-adg
owners:
- ${current.objectId}
securityEnabled: true
exampleProvisionedCluster:
type: azure:arckubernetes:ProvisionedCluster
name: example
properties:
name: example-akpc
resourceGroupName: ${example.name}
location: ${example.location}
azureActiveDirectory:
azureRbacEnabled: true
adminGroupObjectIds:
- ${exampleGroup.id}
tenantId: ${current.tenantId}
identity:
type: SystemAssigned
variables:
current:
fn::invoke:
function: azure:core:getClientConfig
arguments: {}
Create ProvisionedCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProvisionedCluster(name: string, args: ProvisionedClusterArgs, opts?: CustomResourceOptions);
@overload
def ProvisionedCluster(resource_name: str,
args: ProvisionedClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProvisionedCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
identity: Optional[ProvisionedClusterIdentityArgs] = None,
resource_group_name: Optional[str] = None,
arc_agent_auto_upgrade_enabled: Optional[bool] = None,
arc_agent_desired_version: Optional[str] = None,
azure_active_directory: Optional[ProvisionedClusterAzureActiveDirectoryArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewProvisionedCluster(ctx *Context, name string, args ProvisionedClusterArgs, opts ...ResourceOption) (*ProvisionedCluster, error)
public ProvisionedCluster(string name, ProvisionedClusterArgs args, CustomResourceOptions? opts = null)
public ProvisionedCluster(String name, ProvisionedClusterArgs args)
public ProvisionedCluster(String name, ProvisionedClusterArgs args, CustomResourceOptions options)
type: azure:arckubernetes:ProvisionedCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProvisionedClusterArgs
- 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 ProvisionedClusterArgs
- 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 ProvisionedClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProvisionedClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProvisionedClusterArgs
- 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 provisionedClusterResource = new Azure.ArcKubernetes.ProvisionedCluster("provisionedClusterResource", new()
{
Identity = new Azure.ArcKubernetes.Inputs.ProvisionedClusterIdentityArgs
{
Type = "string",
PrincipalId = "string",
TenantId = "string",
},
ResourceGroupName = "string",
ArcAgentAutoUpgradeEnabled = false,
ArcAgentDesiredVersion = "string",
AzureActiveDirectory = new Azure.ArcKubernetes.Inputs.ProvisionedClusterAzureActiveDirectoryArgs
{
AdminGroupObjectIds = new[]
{
"string",
},
AzureRbacEnabled = false,
TenantId = "string",
},
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := arckubernetes.NewProvisionedCluster(ctx, "provisionedClusterResource", &arckubernetes.ProvisionedClusterArgs{
Identity: &arckubernetes.ProvisionedClusterIdentityArgs{
Type: pulumi.String("string"),
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
ArcAgentAutoUpgradeEnabled: pulumi.Bool(false),
ArcAgentDesiredVersion: pulumi.String("string"),
AzureActiveDirectory: &arckubernetes.ProvisionedClusterAzureActiveDirectoryArgs{
AdminGroupObjectIds: pulumi.StringArray{
pulumi.String("string"),
},
AzureRbacEnabled: pulumi.Bool(false),
TenantId: pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var provisionedClusterResource = new ProvisionedCluster("provisionedClusterResource", ProvisionedClusterArgs.builder()
.identity(ProvisionedClusterIdentityArgs.builder()
.type("string")
.principalId("string")
.tenantId("string")
.build())
.resourceGroupName("string")
.arcAgentAutoUpgradeEnabled(false)
.arcAgentDesiredVersion("string")
.azureActiveDirectory(ProvisionedClusterAzureActiveDirectoryArgs.builder()
.adminGroupObjectIds("string")
.azureRbacEnabled(false)
.tenantId("string")
.build())
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
provisioned_cluster_resource = azure.arckubernetes.ProvisionedCluster("provisionedClusterResource",
identity={
"type": "string",
"principal_id": "string",
"tenant_id": "string",
},
resource_group_name="string",
arc_agent_auto_upgrade_enabled=False,
arc_agent_desired_version="string",
azure_active_directory={
"admin_group_object_ids": ["string"],
"azure_rbac_enabled": False,
"tenant_id": "string",
},
location="string",
name="string",
tags={
"string": "string",
})
const provisionedClusterResource = new azure.arckubernetes.ProvisionedCluster("provisionedClusterResource", {
identity: {
type: "string",
principalId: "string",
tenantId: "string",
},
resourceGroupName: "string",
arcAgentAutoUpgradeEnabled: false,
arcAgentDesiredVersion: "string",
azureActiveDirectory: {
adminGroupObjectIds: ["string"],
azureRbacEnabled: false,
tenantId: "string",
},
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:arckubernetes:ProvisionedCluster
properties:
arcAgentAutoUpgradeEnabled: false
arcAgentDesiredVersion: string
azureActiveDirectory:
adminGroupObjectIds:
- string
azureRbacEnabled: false
tenantId: string
identity:
principalId: string
tenantId: string
type: string
location: string
name: string
resourceGroupName: string
tags:
string: string
ProvisionedCluster 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 ProvisionedCluster resource accepts the following input properties:
- Identity
Provisioned
Cluster Identity - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - Resource
Group stringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Arc
Agent boolAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - Arc
Agent stringDesired Version - The version of the Arc agents to be installed on the cluster.
- Azure
Active ProvisionedDirectory Cluster Azure Active Directory - An
azure_active_directory
block as defined below. - Location string
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Name string
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- Identity
Provisioned
Cluster Identity Args - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - Resource
Group stringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Arc
Agent boolAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - Arc
Agent stringDesired Version - The version of the Arc agents to be installed on the cluster.
- Azure
Active ProvisionedDirectory Cluster Azure Active Directory Args - An
azure_active_directory
block as defined below. - Location string
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Name string
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- map[string]string
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- identity
Provisioned
Cluster Identity - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - resource
Group StringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- arc
Agent BooleanAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc
Agent StringDesired Version - The version of the Arc agents to be installed on the cluster.
- azure
Active ProvisionedDirectory Cluster Azure Active Directory - An
azure_active_directory
block as defined below. - location String
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name String
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- identity
Provisioned
Cluster Identity - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - resource
Group stringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- arc
Agent booleanAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc
Agent stringDesired Version - The version of the Arc agents to be installed on the cluster.
- azure
Active ProvisionedDirectory Cluster Azure Active Directory - An
azure_active_directory
block as defined below. - location string
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name string
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- identity
Provisioned
Cluster Identity Args - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - resource_
group_ strname - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- arc_
agent_ boolauto_ upgrade_ enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc_
agent_ strdesired_ version - The version of the Arc agents to be installed on the cluster.
- azure_
active_ Provisioneddirectory Cluster Azure Active Directory Args - An
azure_active_directory
block as defined below. - location str
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name str
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- identity Property Map
- An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - resource
Group StringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- arc
Agent BooleanAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc
Agent StringDesired Version - The version of the Arc agents to be installed on the cluster.
- azure
Active Property MapDirectory - An
azure_active_directory
block as defined below. - location String
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name String
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Map<String>
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProvisionedCluster resource produces the following output properties:
- Agent
Version string - The version of the agent running on the cluster resource.
- Distribution string
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Infrastructure string
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- Kubernetes
Version string - The Kubernetes version of the cluster resource.
- Offering string
- The cluster offering.
- Total
Core intCount - The number of CPU cores present in the cluster resource.
- Total
Node intCount - The number of nodes present in the cluster resource.
- Agent
Version string - The version of the agent running on the cluster resource.
- Distribution string
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Infrastructure string
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- Kubernetes
Version string - The Kubernetes version of the cluster resource.
- Offering string
- The cluster offering.
- Total
Core intCount - The number of CPU cores present in the cluster resource.
- Total
Node intCount - The number of nodes present in the cluster resource.
- agent
Version String - The version of the agent running on the cluster resource.
- distribution String
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructure String
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes
Version String - The Kubernetes version of the cluster resource.
- offering String
- The cluster offering.
- total
Core IntegerCount - The number of CPU cores present in the cluster resource.
- total
Node IntegerCount - The number of nodes present in the cluster resource.
- agent
Version string - The version of the agent running on the cluster resource.
- distribution string
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- infrastructure string
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes
Version string - The Kubernetes version of the cluster resource.
- offering string
- The cluster offering.
- total
Core numberCount - The number of CPU cores present in the cluster resource.
- total
Node numberCount - The number of nodes present in the cluster resource.
- agent_
version str - The version of the agent running on the cluster resource.
- distribution str
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- infrastructure str
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes_
version str - The Kubernetes version of the cluster resource.
- offering str
- The cluster offering.
- total_
core_ intcount - The number of CPU cores present in the cluster resource.
- total_
node_ intcount - The number of nodes present in the cluster resource.
- agent
Version String - The version of the agent running on the cluster resource.
- distribution String
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- infrastructure String
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes
Version String - The Kubernetes version of the cluster resource.
- offering String
- The cluster offering.
- total
Core NumberCount - The number of CPU cores present in the cluster resource.
- total
Node NumberCount - The number of nodes present in the cluster resource.
Look up Existing ProvisionedCluster Resource
Get an existing ProvisionedCluster 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?: ProvisionedClusterState, opts?: CustomResourceOptions): ProvisionedCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agent_version: Optional[str] = None,
arc_agent_auto_upgrade_enabled: Optional[bool] = None,
arc_agent_desired_version: Optional[str] = None,
azure_active_directory: Optional[ProvisionedClusterAzureActiveDirectoryArgs] = None,
distribution: Optional[str] = None,
identity: Optional[ProvisionedClusterIdentityArgs] = None,
infrastructure: Optional[str] = None,
kubernetes_version: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
offering: Optional[str] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
total_core_count: Optional[int] = None,
total_node_count: Optional[int] = None) -> ProvisionedCluster
func GetProvisionedCluster(ctx *Context, name string, id IDInput, state *ProvisionedClusterState, opts ...ResourceOption) (*ProvisionedCluster, error)
public static ProvisionedCluster Get(string name, Input<string> id, ProvisionedClusterState? state, CustomResourceOptions? opts = null)
public static ProvisionedCluster get(String name, Output<String> id, ProvisionedClusterState state, CustomResourceOptions options)
resources: _: type: azure:arckubernetes:ProvisionedCluster get: id: ${id}
- 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.
- 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.
- Agent
Version string - The version of the agent running on the cluster resource.
- Arc
Agent boolAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - Arc
Agent stringDesired Version - The version of the Arc agents to be installed on the cluster.
- Azure
Active ProvisionedDirectory Cluster Azure Active Directory - An
azure_active_directory
block as defined below. - Distribution string
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- Identity
Provisioned
Cluster Identity - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - Infrastructure string
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- Kubernetes
Version string - The Kubernetes version of the cluster resource.
- Location string
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Name string
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Offering string
- The cluster offering.
- Resource
Group stringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- Total
Core intCount - The number of CPU cores present in the cluster resource.
- Total
Node intCount - The number of nodes present in the cluster resource.
- Agent
Version string - The version of the agent running on the cluster resource.
- Arc
Agent boolAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - Arc
Agent stringDesired Version - The version of the Arc agents to be installed on the cluster.
- Azure
Active ProvisionedDirectory Cluster Azure Active Directory Args - An
azure_active_directory
block as defined below. - Distribution string
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- Identity
Provisioned
Cluster Identity Args - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - Infrastructure string
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- Kubernetes
Version string - The Kubernetes version of the cluster resource.
- Location string
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Name string
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Offering string
- The cluster offering.
- Resource
Group stringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- map[string]string
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- Total
Core intCount - The number of CPU cores present in the cluster resource.
- Total
Node intCount - The number of nodes present in the cluster resource.
- agent
Version String - The version of the agent running on the cluster resource.
- arc
Agent BooleanAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc
Agent StringDesired Version - The version of the Arc agents to be installed on the cluster.
- azure
Active ProvisionedDirectory Cluster Azure Active Directory - An
azure_active_directory
block as defined below. - distribution String
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- identity
Provisioned
Cluster Identity - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - infrastructure String
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes
Version String - The Kubernetes version of the cluster resource.
- location String
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name String
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- offering String
- The cluster offering.
- resource
Group StringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- total
Core IntegerCount - The number of CPU cores present in the cluster resource.
- total
Node IntegerCount - The number of nodes present in the cluster resource.
- agent
Version string - The version of the agent running on the cluster resource.
- arc
Agent booleanAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc
Agent stringDesired Version - The version of the Arc agents to be installed on the cluster.
- azure
Active ProvisionedDirectory Cluster Azure Active Directory - An
azure_active_directory
block as defined below. - distribution string
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- identity
Provisioned
Cluster Identity - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - infrastructure string
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes
Version string - The Kubernetes version of the cluster resource.
- location string
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name string
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- offering string
- The cluster offering.
- resource
Group stringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- total
Core numberCount - The number of CPU cores present in the cluster resource.
- total
Node numberCount - The number of nodes present in the cluster resource.
- agent_
version str - The version of the agent running on the cluster resource.
- arc_
agent_ boolauto_ upgrade_ enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc_
agent_ strdesired_ version - The version of the Arc agents to be installed on the cluster.
- azure_
active_ Provisioneddirectory Cluster Azure Active Directory Args - An
azure_active_directory
block as defined below. - distribution str
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- identity
Provisioned
Cluster Identity Args - An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - infrastructure str
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes_
version str - The Kubernetes version of the cluster resource.
- location str
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name str
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- offering str
- The cluster offering.
- resource_
group_ strname - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- total_
core_ intcount - The number of CPU cores present in the cluster resource.
- total_
node_ intcount - The number of nodes present in the cluster resource.
- agent
Version String - The version of the agent running on the cluster resource.
- arc
Agent BooleanAuto Upgrade Enabled - Whether the Arc agents will be upgraded automatically to the latest version. Defaults to
true
. - arc
Agent StringDesired Version - The version of the Arc agents to be installed on the cluster.
- azure
Active Property MapDirectory - An
azure_active_directory
block as defined below. - distribution String
- The distribution running on this Arc Kubernetes Provisioned Cluster.
- identity Property Map
- An
identity
block as defined below. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - infrastructure String
- The infrastructure on which the Arc Kubernetes Provisioned Cluster is running on.
- kubernetes
Version String - The Kubernetes version of the cluster resource.
- location String
- The Azure Region where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- name String
- The name which should be used for this Arc Kubernetes Provisioned Cluster. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- offering String
- The cluster offering.
- resource
Group StringName - The name of the Resource Group where the Arc Kubernetes Provisioned Cluster should exist. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created.
- Map<String>
- A mapping of tags which should be assigned to the Arc Kubernetes Provisioned Cluster.
- total
Core NumberCount - The number of CPU cores present in the cluster resource.
- total
Node NumberCount - The number of nodes present in the cluster resource.
Supporting Types
ProvisionedClusterAzureActiveDirectory, ProvisionedClusterAzureActiveDirectoryArgs
- Admin
Group List<string>Object Ids - A list of IDs of Microsoft Entra ID Groups. All members of the specified Microsoft Entra ID Groups have the cluster administrator access to the Kubernetes cluster.
- Azure
Rbac boolEnabled - Whether to enable Azure RBAC for Kubernetes authorization. Defaults to
false
. - Tenant
Id string - The Tenant ID to use for authentication. If not specified, the Tenant of the Arc Kubernetes Cluster will be used.
- Admin
Group []stringObject Ids - A list of IDs of Microsoft Entra ID Groups. All members of the specified Microsoft Entra ID Groups have the cluster administrator access to the Kubernetes cluster.
- Azure
Rbac boolEnabled - Whether to enable Azure RBAC for Kubernetes authorization. Defaults to
false
. - Tenant
Id string - The Tenant ID to use for authentication. If not specified, the Tenant of the Arc Kubernetes Cluster will be used.
- admin
Group List<String>Object Ids - A list of IDs of Microsoft Entra ID Groups. All members of the specified Microsoft Entra ID Groups have the cluster administrator access to the Kubernetes cluster.
- azure
Rbac BooleanEnabled - Whether to enable Azure RBAC for Kubernetes authorization. Defaults to
false
. - tenant
Id String - The Tenant ID to use for authentication. If not specified, the Tenant of the Arc Kubernetes Cluster will be used.
- admin
Group string[]Object Ids - A list of IDs of Microsoft Entra ID Groups. All members of the specified Microsoft Entra ID Groups have the cluster administrator access to the Kubernetes cluster.
- azure
Rbac booleanEnabled - Whether to enable Azure RBAC for Kubernetes authorization. Defaults to
false
. - tenant
Id string - The Tenant ID to use for authentication. If not specified, the Tenant of the Arc Kubernetes Cluster will be used.
- admin_
group_ Sequence[str]object_ ids - A list of IDs of Microsoft Entra ID Groups. All members of the specified Microsoft Entra ID Groups have the cluster administrator access to the Kubernetes cluster.
- azure_
rbac_ boolenabled - Whether to enable Azure RBAC for Kubernetes authorization. Defaults to
false
. - tenant_
id str - The Tenant ID to use for authentication. If not specified, the Tenant of the Arc Kubernetes Cluster will be used.
- admin
Group List<String>Object Ids - A list of IDs of Microsoft Entra ID Groups. All members of the specified Microsoft Entra ID Groups have the cluster administrator access to the Kubernetes cluster.
- azure
Rbac BooleanEnabled - Whether to enable Azure RBAC for Kubernetes authorization. Defaults to
false
. - tenant
Id String - The Tenant ID to use for authentication. If not specified, the Tenant of the Arc Kubernetes Cluster will be used.
ProvisionedClusterIdentity, ProvisionedClusterIdentityArgs
- Type string
- The type of the Managed Identity. The only possible value is
SystemAssigned
. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- Type string
- The type of the Managed Identity. The only possible value is
SystemAssigned
. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - Principal
Id string - The Principal ID associated with this Managed Service Identity.
- Tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- type String
- The type of the Managed Identity. The only possible value is
SystemAssigned
. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
- type string
- The type of the Managed Identity. The only possible value is
SystemAssigned
. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - principal
Id string - The Principal ID associated with this Managed Service Identity.
- tenant
Id string - The Tenant ID associated with this Managed Service Identity.
- type str
- The type of the Managed Identity. The only possible value is
SystemAssigned
. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - principal_
id str - The Principal ID associated with this Managed Service Identity.
- tenant_
id str - The Tenant ID associated with this Managed Service Identity.
- type String
- The type of the Managed Identity. The only possible value is
SystemAssigned
. Changing this forces a new Arc Kubernetes Provisioned Cluster to be created. - principal
Id String - The Principal ID associated with this Managed Service Identity.
- tenant
Id String - The Tenant ID associated with this Managed Service Identity.
Import
Arc Kubernetes Provisioned Clusters can be imported using the resource id
, e.g.
$ pulumi import azure:arckubernetes/provisionedCluster:ProvisionedCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Kubernetes/connectedClusters/cluster1
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.