azure-native.containerservice.OpenShiftManagedCluster
Explore with Pulumi AI
OpenShift Managed cluster. API Version: 2019-04-30.
Example Usage
Create/Update OpenShift Managed Cluster
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var openShiftManagedCluster = new AzureNative.ContainerService.OpenShiftManagedCluster("openShiftManagedCluster", new()
{
AgentPoolProfiles = new[]
{
new AzureNative.ContainerService.Inputs.OpenShiftManagedClusterAgentPoolProfileArgs
{
Count = 2,
Name = "infra",
OsType = "Linux",
Role = "infra",
SubnetCidr = "10.0.0.0/24",
VmSize = "Standard_D4s_v3",
},
new AzureNative.ContainerService.Inputs.OpenShiftManagedClusterAgentPoolProfileArgs
{
Count = 4,
Name = "compute",
OsType = "Linux",
Role = "compute",
SubnetCidr = "10.0.0.0/24",
VmSize = "Standard_D4s_v3",
},
},
AuthProfile = new AzureNative.ContainerService.Inputs.OpenShiftManagedClusterAuthProfileArgs
{
IdentityProviders = new[]
{
new AzureNative.ContainerService.Inputs.OpenShiftManagedClusterIdentityProviderArgs
{
Name = "Azure AD",
Provider =
{
{ "clientId", "clientId" },
{ "customerAdminGroupId", "customerAdminGroupId" },
{ "kind", "AADIdentityProvider" },
{ "secret", "secret" },
{ "tenantId", "tenantId" },
},
},
},
},
Location = "location1",
MasterPoolProfile = new AzureNative.ContainerService.Inputs.OpenShiftManagedClusterMasterPoolProfileArgs
{
Count = 3,
Name = "master",
OsType = "Linux",
SubnetCidr = "10.0.0.0/24",
VmSize = "Standard_D4s_v3",
},
NetworkProfile = new AzureNative.ContainerService.Inputs.NetworkProfileArgs
{
VnetCidr = "10.0.0.0/8",
},
OpenShiftVersion = "v3.11",
ResourceGroupName = "rg1",
ResourceName = "clustername1",
RouterProfiles = new[]
{
new AzureNative.ContainerService.Inputs.OpenShiftRouterProfileArgs
{
Name = "default",
},
},
Tags =
{
{ "archv2", "" },
{ "tier", "production" },
},
});
});
package main
import (
containerservice "github.com/pulumi/pulumi-azure-native-sdk/containerservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := containerservice.NewOpenShiftManagedCluster(ctx, "openShiftManagedCluster", &containerservice.OpenShiftManagedClusterArgs{
AgentPoolProfiles: []containerservice.OpenShiftManagedClusterAgentPoolProfileArgs{
{
Count: pulumi.Int(2),
Name: pulumi.String("infra"),
OsType: pulumi.String("Linux"),
Role: pulumi.String("infra"),
SubnetCidr: pulumi.String("10.0.0.0/24"),
VmSize: pulumi.String("Standard_D4s_v3"),
},
{
Count: pulumi.Int(4),
Name: pulumi.String("compute"),
OsType: pulumi.String("Linux"),
Role: pulumi.String("compute"),
SubnetCidr: pulumi.String("10.0.0.0/24"),
VmSize: pulumi.String("Standard_D4s_v3"),
},
},
AuthProfile: containerservice.OpenShiftManagedClusterAuthProfileResponse{
IdentityProviders: []containerservice.OpenShiftManagedClusterIdentityProviderArgs{
{
Name: pulumi.String("Azure AD"),
Provider: {
ClientId: pulumi.String("clientId"),
CustomerAdminGroupId: pulumi.String("customerAdminGroupId"),
Kind: pulumi.String("AADIdentityProvider"),
Secret: pulumi.String("secret"),
TenantId: pulumi.String("tenantId"),
},
},
},
},
Location: pulumi.String("location1"),
MasterPoolProfile: &containerservice.OpenShiftManagedClusterMasterPoolProfileArgs{
Count: pulumi.Int(3),
Name: pulumi.String("master"),
OsType: pulumi.String("Linux"),
SubnetCidr: pulumi.String("10.0.0.0/24"),
VmSize: pulumi.String("Standard_D4s_v3"),
},
NetworkProfile: &containerservice.NetworkProfileArgs{
VnetCidr: pulumi.String("10.0.0.0/8"),
},
OpenShiftVersion: pulumi.String("v3.11"),
ResourceGroupName: pulumi.String("rg1"),
ResourceName: pulumi.String("clustername1"),
RouterProfiles: []containerservice.OpenShiftRouterProfileArgs{
{
Name: pulumi.String("default"),
},
},
Tags: pulumi.StringMap{
"archv2": pulumi.String(""),
"tier": pulumi.String("production"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.containerservice.OpenShiftManagedCluster;
import com.pulumi.azurenative.containerservice.OpenShiftManagedClusterArgs;
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 openShiftManagedCluster = new OpenShiftManagedCluster("openShiftManagedCluster", OpenShiftManagedClusterArgs.builder()
.agentPoolProfiles(
Map.ofEntries(
Map.entry("count", 2),
Map.entry("name", "infra"),
Map.entry("osType", "Linux"),
Map.entry("role", "infra"),
Map.entry("subnetCidr", "10.0.0.0/24"),
Map.entry("vmSize", "Standard_D4s_v3")
),
Map.ofEntries(
Map.entry("count", 4),
Map.entry("name", "compute"),
Map.entry("osType", "Linux"),
Map.entry("role", "compute"),
Map.entry("subnetCidr", "10.0.0.0/24"),
Map.entry("vmSize", "Standard_D4s_v3")
))
.authProfile(Map.of("identityProviders", Map.ofEntries(
Map.entry("name", "Azure AD"),
Map.entry("provider", Map.ofEntries(
Map.entry("clientId", "clientId"),
Map.entry("customerAdminGroupId", "customerAdminGroupId"),
Map.entry("kind", "AADIdentityProvider"),
Map.entry("secret", "secret"),
Map.entry("tenantId", "tenantId")
))
)))
.location("location1")
.masterPoolProfile(Map.ofEntries(
Map.entry("count", 3),
Map.entry("name", "master"),
Map.entry("osType", "Linux"),
Map.entry("subnetCidr", "10.0.0.0/24"),
Map.entry("vmSize", "Standard_D4s_v3")
))
.networkProfile(Map.of("vnetCidr", "10.0.0.0/8"))
.openShiftVersion("v3.11")
.resourceGroupName("rg1")
.resourceName("clustername1")
.routerProfiles(Map.of("name", "default"))
.tags(Map.ofEntries(
Map.entry("archv2", ""),
Map.entry("tier", "production")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
open_shift_managed_cluster = azure_native.containerservice.OpenShiftManagedCluster("openShiftManagedCluster",
agent_pool_profiles=[
azure_native.containerservice.OpenShiftManagedClusterAgentPoolProfileArgs(
count=2,
name="infra",
os_type="Linux",
role="infra",
subnet_cidr="10.0.0.0/24",
vm_size="Standard_D4s_v3",
),
azure_native.containerservice.OpenShiftManagedClusterAgentPoolProfileArgs(
count=4,
name="compute",
os_type="Linux",
role="compute",
subnet_cidr="10.0.0.0/24",
vm_size="Standard_D4s_v3",
),
],
auth_profile=azure_native.containerservice.OpenShiftManagedClusterAuthProfileResponseArgs(
identity_providers=[{
"name": "Azure AD",
"provider": azure_native.containerservice.OpenShiftManagedClusterAADIdentityProviderResponseArgs(
client_id="clientId",
customer_admin_group_id="customerAdminGroupId",
kind="AADIdentityProvider",
secret="secret",
tenant_id="tenantId",
),
}],
),
location="location1",
master_pool_profile=azure_native.containerservice.OpenShiftManagedClusterMasterPoolProfileArgs(
count=3,
name="master",
os_type="Linux",
subnet_cidr="10.0.0.0/24",
vm_size="Standard_D4s_v3",
),
network_profile=azure_native.containerservice.NetworkProfileArgs(
vnet_cidr="10.0.0.0/8",
),
open_shift_version="v3.11",
resource_group_name="rg1",
resource_name_="clustername1",
router_profiles=[azure_native.containerservice.OpenShiftRouterProfileArgs(
name="default",
)],
tags={
"archv2": "",
"tier": "production",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const openShiftManagedCluster = new azure_native.containerservice.OpenShiftManagedCluster("openShiftManagedCluster", {
agentPoolProfiles: [
{
count: 2,
name: "infra",
osType: "Linux",
role: "infra",
subnetCidr: "10.0.0.0/24",
vmSize: "Standard_D4s_v3",
},
{
count: 4,
name: "compute",
osType: "Linux",
role: "compute",
subnetCidr: "10.0.0.0/24",
vmSize: "Standard_D4s_v3",
},
],
authProfile: {
identityProviders: [{
name: "Azure AD",
provider: {
clientId: "clientId",
customerAdminGroupId: "customerAdminGroupId",
kind: "AADIdentityProvider",
secret: "secret",
tenantId: "tenantId",
},
}],
},
location: "location1",
masterPoolProfile: {
count: 3,
name: "master",
osType: "Linux",
subnetCidr: "10.0.0.0/24",
vmSize: "Standard_D4s_v3",
},
networkProfile: {
vnetCidr: "10.0.0.0/8",
},
openShiftVersion: "v3.11",
resourceGroupName: "rg1",
resourceName: "clustername1",
routerProfiles: [{
name: "default",
}],
tags: {
archv2: "",
tier: "production",
},
});
resources:
openShiftManagedCluster:
type: azure-native:containerservice:OpenShiftManagedCluster
properties:
agentPoolProfiles:
- count: 2
name: infra
osType: Linux
role: infra
subnetCidr: 10.0.0.0/24
vmSize: Standard_D4s_v3
- count: 4
name: compute
osType: Linux
role: compute
subnetCidr: 10.0.0.0/24
vmSize: Standard_D4s_v3
authProfile:
identityProviders:
- name: Azure AD
provider:
clientId: clientId
customerAdminGroupId: customerAdminGroupId
kind: AADIdentityProvider
secret: secret
tenantId: tenantId
location: location1
masterPoolProfile:
count: 3
name: master
osType: Linux
subnetCidr: 10.0.0.0/24
vmSize: Standard_D4s_v3
networkProfile:
vnetCidr: 10.0.0.0/8
openShiftVersion: v3.11
resourceGroupName: rg1
resourceName: clustername1
routerProfiles:
- name: default
tags:
archv2:
tier: production
Create OpenShiftManagedCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenShiftManagedCluster(name: string, args: OpenShiftManagedClusterArgs, opts?: CustomResourceOptions);
@overload
def OpenShiftManagedCluster(resource_name: str,
args: OpenShiftManagedClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenShiftManagedCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
open_shift_version: Optional[str] = None,
resource_group_name: Optional[str] = None,
agent_pool_profiles: Optional[Sequence[OpenShiftManagedClusterAgentPoolProfileArgs]] = None,
auth_profile: Optional[OpenShiftManagedClusterAuthProfileArgs] = None,
location: Optional[str] = None,
master_pool_profile: Optional[OpenShiftManagedClusterMasterPoolProfileArgs] = None,
network_profile: Optional[NetworkProfileArgs] = None,
plan: Optional[PurchasePlanArgs] = None,
resource_name_: Optional[str] = None,
router_profiles: Optional[Sequence[OpenShiftRouterProfileArgs]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewOpenShiftManagedCluster(ctx *Context, name string, args OpenShiftManagedClusterArgs, opts ...ResourceOption) (*OpenShiftManagedCluster, error)
public OpenShiftManagedCluster(string name, OpenShiftManagedClusterArgs args, CustomResourceOptions? opts = null)
public OpenShiftManagedCluster(String name, OpenShiftManagedClusterArgs args)
public OpenShiftManagedCluster(String name, OpenShiftManagedClusterArgs args, CustomResourceOptions options)
type: azure-native:containerservice:OpenShiftManagedCluster
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 OpenShiftManagedClusterArgs
- 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 OpenShiftManagedClusterArgs
- 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 OpenShiftManagedClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenShiftManagedClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenShiftManagedClusterArgs
- 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 openShiftManagedClusterResource = new AzureNative.Containerservice.OpenShiftManagedCluster("openShiftManagedClusterResource", new()
{
OpenShiftVersion = "string",
ResourceGroupName = "string",
AgentPoolProfiles = new[]
{
{
{ "count", 0 },
{ "name", "string" },
{ "vmSize", "string" },
{ "osType", "string" },
{ "role", "string" },
{ "subnetCidr", "string" },
},
},
AuthProfile =
{
{ "identityProviders", new[]
{
{
{ "name", "string" },
{ "provider",
{
{ "kind", "AADIdentityProvider" },
{ "clientId", "string" },
{ "customerAdminGroupId", "string" },
{ "secret", "string" },
{ "tenantId", "string" },
} },
},
} },
},
Location = "string",
MasterPoolProfile =
{
{ "count", 0 },
{ "vmSize", "string" },
{ "name", "string" },
{ "osType", "string" },
{ "subnetCidr", "string" },
},
NetworkProfile =
{
{ "peerVnetId", "string" },
{ "vnetCidr", "string" },
{ "vnetId", "string" },
},
Plan =
{
{ "name", "string" },
{ "product", "string" },
{ "promotionCode", "string" },
{ "publisher", "string" },
},
ResourceName = "string",
RouterProfiles = new[]
{
{
{ "name", "string" },
},
},
Tags =
{
{ "string", "string" },
},
});
example, err := containerservice.NewOpenShiftManagedCluster(ctx, "openShiftManagedClusterResource", &containerservice.OpenShiftManagedClusterArgs{
OpenShiftVersion: "string",
ResourceGroupName: "string",
AgentPoolProfiles: []map[string]interface{}{
map[string]interface{}{
"count": 0,
"name": "string",
"vmSize": "string",
"osType": "string",
"role": "string",
"subnetCidr": "string",
},
},
AuthProfile: map[string]interface{}{
"identityProviders": []map[string]interface{}{
map[string]interface{}{
"name": "string",
"provider": map[string]interface{}{
"kind": "AADIdentityProvider",
"clientId": "string",
"customerAdminGroupId": "string",
"secret": "string",
"tenantId": "string",
},
},
},
},
Location: "string",
MasterPoolProfile: map[string]interface{}{
"count": 0,
"vmSize": "string",
"name": "string",
"osType": "string",
"subnetCidr": "string",
},
NetworkProfile: map[string]interface{}{
"peerVnetId": "string",
"vnetCidr": "string",
"vnetId": "string",
},
Plan: map[string]interface{}{
"name": "string",
"product": "string",
"promotionCode": "string",
"publisher": "string",
},
ResourceName: "string",
RouterProfiles: []map[string]interface{}{
map[string]interface{}{
"name": "string",
},
},
Tags: map[string]interface{}{
"string": "string",
},
})
var openShiftManagedClusterResource = new OpenShiftManagedCluster("openShiftManagedClusterResource", OpenShiftManagedClusterArgs.builder()
.openShiftVersion("string")
.resourceGroupName("string")
.agentPoolProfiles(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.authProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.masterPoolProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.networkProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.plan(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceName("string")
.routerProfiles(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
open_shift_managed_cluster_resource = azure_native.containerservice.OpenShiftManagedCluster("openShiftManagedClusterResource",
open_shift_version=string,
resource_group_name=string,
agent_pool_profiles=[{
count: 0,
name: string,
vmSize: string,
osType: string,
role: string,
subnetCidr: string,
}],
auth_profile={
identityProviders: [{
name: string,
provider: {
kind: AADIdentityProvider,
clientId: string,
customerAdminGroupId: string,
secret: string,
tenantId: string,
},
}],
},
location=string,
master_pool_profile={
count: 0,
vmSize: string,
name: string,
osType: string,
subnetCidr: string,
},
network_profile={
peerVnetId: string,
vnetCidr: string,
vnetId: string,
},
plan={
name: string,
product: string,
promotionCode: string,
publisher: string,
},
resource_name_=string,
router_profiles=[{
name: string,
}],
tags={
string: string,
})
const openShiftManagedClusterResource = new azure_native.containerservice.OpenShiftManagedCluster("openShiftManagedClusterResource", {
openShiftVersion: "string",
resourceGroupName: "string",
agentPoolProfiles: [{
count: 0,
name: "string",
vmSize: "string",
osType: "string",
role: "string",
subnetCidr: "string",
}],
authProfile: {
identityProviders: [{
name: "string",
provider: {
kind: "AADIdentityProvider",
clientId: "string",
customerAdminGroupId: "string",
secret: "string",
tenantId: "string",
},
}],
},
location: "string",
masterPoolProfile: {
count: 0,
vmSize: "string",
name: "string",
osType: "string",
subnetCidr: "string",
},
networkProfile: {
peerVnetId: "string",
vnetCidr: "string",
vnetId: "string",
},
plan: {
name: "string",
product: "string",
promotionCode: "string",
publisher: "string",
},
resourceName: "string",
routerProfiles: [{
name: "string",
}],
tags: {
string: "string",
},
});
type: azure-native:containerservice:OpenShiftManagedCluster
properties:
agentPoolProfiles:
- count: 0
name: string
osType: string
role: string
subnetCidr: string
vmSize: string
authProfile:
identityProviders:
- name: string
provider:
clientId: string
customerAdminGroupId: string
kind: AADIdentityProvider
secret: string
tenantId: string
location: string
masterPoolProfile:
count: 0
name: string
osType: string
subnetCidr: string
vmSize: string
networkProfile:
peerVnetId: string
vnetCidr: string
vnetId: string
openShiftVersion: string
plan:
name: string
product: string
promotionCode: string
publisher: string
resourceGroupName: string
resourceName: string
routerProfiles:
- name: string
tags:
string: string
OpenShiftManagedCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The OpenShiftManagedCluster resource accepts the following input properties:
- Open
Shift stringVersion - Version of OpenShift specified when creating the cluster.
- Resource
Group stringName - The name of the resource group.
- Agent
Pool List<Pulumi.Profiles Azure Native. Container Service. Inputs. Open Shift Managed Cluster Agent Pool Profile> - Configuration of OpenShift cluster VMs.
- Auth
Profile Pulumi.Azure Native. Container Service. Inputs. Open Shift Managed Cluster Auth Profile - Configures OpenShift authentication.
- Location string
- Resource location
- Master
Pool Pulumi.Profile Azure Native. Container Service. Inputs. Open Shift Managed Cluster Master Pool Profile - Configuration for OpenShift master VMs.
- Network
Profile Pulumi.Azure Native. Container Service. Inputs. Network Profile - Configuration for OpenShift networking.
- Plan
Pulumi.
Azure Native. Container Service. Inputs. Purchase Plan - Define the resource plan as required by ARM for billing purposes
- Resource
Name string - The name of the OpenShift managed cluster resource.
- Router
Profiles List<Pulumi.Azure Native. Container Service. Inputs. Open Shift Router Profile> - Configuration for OpenShift router(s).
- Dictionary<string, string>
- Resource tags
- Open
Shift stringVersion - Version of OpenShift specified when creating the cluster.
- Resource
Group stringName - The name of the resource group.
- Agent
Pool []OpenProfiles Shift Managed Cluster Agent Pool Profile Args - Configuration of OpenShift cluster VMs.
- Auth
Profile OpenShift Managed Cluster Auth Profile Args - Configures OpenShift authentication.
- Location string
- Resource location
- Master
Pool OpenProfile Shift Managed Cluster Master Pool Profile Args - Configuration for OpenShift master VMs.
- Network
Profile NetworkProfile Args - Configuration for OpenShift networking.
- Plan
Purchase
Plan Args - Define the resource plan as required by ARM for billing purposes
- Resource
Name string - The name of the OpenShift managed cluster resource.
- Router
Profiles []OpenShift Router Profile Args - Configuration for OpenShift router(s).
- map[string]string
- Resource tags
- open
Shift StringVersion - Version of OpenShift specified when creating the cluster.
- resource
Group StringName - The name of the resource group.
- agent
Pool List<OpenProfiles Shift Managed Cluster Agent Pool Profile> - Configuration of OpenShift cluster VMs.
- auth
Profile OpenShift Managed Cluster Auth Profile - Configures OpenShift authentication.
- location String
- Resource location
- master
Pool OpenProfile Shift Managed Cluster Master Pool Profile - Configuration for OpenShift master VMs.
- network
Profile NetworkProfile - Configuration for OpenShift networking.
- plan
Purchase
Plan - Define the resource plan as required by ARM for billing purposes
- resource
Name String - The name of the OpenShift managed cluster resource.
- router
Profiles List<OpenShift Router Profile> - Configuration for OpenShift router(s).
- Map<String,String>
- Resource tags
- open
Shift stringVersion - Version of OpenShift specified when creating the cluster.
- resource
Group stringName - The name of the resource group.
- agent
Pool OpenProfiles Shift Managed Cluster Agent Pool Profile[] - Configuration of OpenShift cluster VMs.
- auth
Profile OpenShift Managed Cluster Auth Profile - Configures OpenShift authentication.
- location string
- Resource location
- master
Pool OpenProfile Shift Managed Cluster Master Pool Profile - Configuration for OpenShift master VMs.
- network
Profile NetworkProfile - Configuration for OpenShift networking.
- plan
Purchase
Plan - Define the resource plan as required by ARM for billing purposes
- resource
Name string - The name of the OpenShift managed cluster resource.
- router
Profiles OpenShift Router Profile[] - Configuration for OpenShift router(s).
- {[key: string]: string}
- Resource tags
- open_
shift_ strversion - Version of OpenShift specified when creating the cluster.
- resource_
group_ strname - The name of the resource group.
- agent_
pool_ Sequence[Openprofiles Shift Managed Cluster Agent Pool Profile Args] - Configuration of OpenShift cluster VMs.
- auth_
profile OpenShift Managed Cluster Auth Profile Args - Configures OpenShift authentication.
- location str
- Resource location
- master_
pool_ Openprofile Shift Managed Cluster Master Pool Profile Args - Configuration for OpenShift master VMs.
- network_
profile NetworkProfile Args - Configuration for OpenShift networking.
- plan
Purchase
Plan Args - Define the resource plan as required by ARM for billing purposes
- resource_
name str - The name of the OpenShift managed cluster resource.
- router_
profiles Sequence[OpenShift Router Profile Args] - Configuration for OpenShift router(s).
- Mapping[str, str]
- Resource tags
- open
Shift StringVersion - Version of OpenShift specified when creating the cluster.
- resource
Group StringName - The name of the resource group.
- agent
Pool List<Property Map>Profiles - Configuration of OpenShift cluster VMs.
- auth
Profile Property Map - Configures OpenShift authentication.
- location String
- Resource location
- master
Pool Property MapProfile - Configuration for OpenShift master VMs.
- network
Profile Property Map - Configuration for OpenShift networking.
- plan Property Map
- Define the resource plan as required by ARM for billing purposes
- resource
Name String - The name of the OpenShift managed cluster resource.
- router
Profiles List<Property Map> - Configuration for OpenShift router(s).
- Map<String>
- Resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the OpenShiftManagedCluster resource produces the following output properties:
- Cluster
Version string - Version of OpenShift specified when creating the cluster.
- Fqdn string
- Service generated FQDN for OpenShift API server loadbalancer internal hostname.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name
- Provisioning
State string - The current deployment or provisioning state, which only appears in the response.
- Public
Hostname string - Service generated FQDN for OpenShift API server.
- Type string
- Resource type
- Cluster
Version string - Version of OpenShift specified when creating the cluster.
- Fqdn string
- Service generated FQDN for OpenShift API server loadbalancer internal hostname.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name
- Provisioning
State string - The current deployment or provisioning state, which only appears in the response.
- Public
Hostname string - Service generated FQDN for OpenShift API server.
- Type string
- Resource type
- cluster
Version String - Version of OpenShift specified when creating the cluster.
- fqdn String
- Service generated FQDN for OpenShift API server loadbalancer internal hostname.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name
- provisioning
State String - The current deployment or provisioning state, which only appears in the response.
- public
Hostname String - Service generated FQDN for OpenShift API server.
- type String
- Resource type
- cluster
Version string - Version of OpenShift specified when creating the cluster.
- fqdn string
- Service generated FQDN for OpenShift API server loadbalancer internal hostname.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name
- provisioning
State string - The current deployment or provisioning state, which only appears in the response.
- public
Hostname string - Service generated FQDN for OpenShift API server.
- type string
- Resource type
- cluster_
version str - Version of OpenShift specified when creating the cluster.
- fqdn str
- Service generated FQDN for OpenShift API server loadbalancer internal hostname.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name
- provisioning_
state str - The current deployment or provisioning state, which only appears in the response.
- public_
hostname str - Service generated FQDN for OpenShift API server.
- type str
- Resource type
- cluster
Version String - Version of OpenShift specified when creating the cluster.
- fqdn String
- Service generated FQDN for OpenShift API server loadbalancer internal hostname.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name
- provisioning
State String - The current deployment or provisioning state, which only appears in the response.
- public
Hostname String - Service generated FQDN for OpenShift API server.
- type String
- Resource type
Supporting Types
NetworkProfile, NetworkProfileArgs
- Peer
Vnet stringId - CIDR of the Vnet to peer.
- Vnet
Cidr string - CIDR for the OpenShift Vnet.
- Vnet
Id string - ID of the Vnet created for OSA cluster.
- Peer
Vnet stringId - CIDR of the Vnet to peer.
- Vnet
Cidr string - CIDR for the OpenShift Vnet.
- Vnet
Id string - ID of the Vnet created for OSA cluster.
- peer
Vnet StringId - CIDR of the Vnet to peer.
- vnet
Cidr String - CIDR for the OpenShift Vnet.
- vnet
Id String - ID of the Vnet created for OSA cluster.
- peer
Vnet stringId - CIDR of the Vnet to peer.
- vnet
Cidr string - CIDR for the OpenShift Vnet.
- vnet
Id string - ID of the Vnet created for OSA cluster.
- peer_
vnet_ strid - CIDR of the Vnet to peer.
- vnet_
cidr str - CIDR for the OpenShift Vnet.
- vnet_
id str - ID of the Vnet created for OSA cluster.
- peer
Vnet StringId - CIDR of the Vnet to peer.
- vnet
Cidr String - CIDR for the OpenShift Vnet.
- vnet
Id String - ID of the Vnet created for OSA cluster.
NetworkProfileResponse, NetworkProfileResponseArgs
- Peer
Vnet stringId - CIDR of the Vnet to peer.
- Vnet
Cidr string - CIDR for the OpenShift Vnet.
- Vnet
Id string - ID of the Vnet created for OSA cluster.
- Peer
Vnet stringId - CIDR of the Vnet to peer.
- Vnet
Cidr string - CIDR for the OpenShift Vnet.
- Vnet
Id string - ID of the Vnet created for OSA cluster.
- peer
Vnet StringId - CIDR of the Vnet to peer.
- vnet
Cidr String - CIDR for the OpenShift Vnet.
- vnet
Id String - ID of the Vnet created for OSA cluster.
- peer
Vnet stringId - CIDR of the Vnet to peer.
- vnet
Cidr string - CIDR for the OpenShift Vnet.
- vnet
Id string - ID of the Vnet created for OSA cluster.
- peer_
vnet_ strid - CIDR of the Vnet to peer.
- vnet_
cidr str - CIDR for the OpenShift Vnet.
- vnet_
id str - ID of the Vnet created for OSA cluster.
- peer
Vnet StringId - CIDR of the Vnet to peer.
- vnet
Cidr String - CIDR for the OpenShift Vnet.
- vnet
Id String - ID of the Vnet created for OSA cluster.
OSType, OSTypeArgs
- Linux
- Linux
- Windows
- Windows
- OSType
Linux - Linux
- OSType
Windows - Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- LINUX
- Linux
- WINDOWS
- Windows
- "Linux"
- Linux
- "Windows"
- Windows
OpenShiftAgentPoolProfileRole, OpenShiftAgentPoolProfileRoleArgs
- Compute
- compute
- Infra
- infra
- Open
Shift Agent Pool Profile Role Compute - compute
- Open
Shift Agent Pool Profile Role Infra - infra
- Compute
- compute
- Infra
- infra
- Compute
- compute
- Infra
- infra
- COMPUTE
- compute
- INFRA
- infra
- "compute"
- compute
- "infra"
- infra
OpenShiftContainerServiceVMSize, OpenShiftContainerServiceVMSizeArgs
- Standard_D2s_
v3 - Standard_D2s_v3
- Standard_D4s_
v3 - Standard_D4s_v3
- Standard_D8s_
v3 - Standard_D8s_v3
- Standard_D16s_
v3 - Standard_D16s_v3
- Standard_D32s_
v3 - Standard_D32s_v3
- Standard_D64s_
v3 - Standard_D64s_v3
- Standard_DS4_
v2 - Standard_DS4_v2
- Standard_DS5_
v2 - Standard_DS5_v2
- Standard_F8s_
v2 - Standard_F8s_v2
- Standard_F16s_
v2 - Standard_F16s_v2
- Standard_F32s_
v2 - Standard_F32s_v2
- Standard_F64s_
v2 - Standard_F64s_v2
- Standard_F72s_
v2 - Standard_F72s_v2
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_E4s_
v3 - Standard_E4s_v3
- Standard_E8s_
v3 - Standard_E8s_v3
- Standard_E16s_
v3 - Standard_E16s_v3
- Standard_E20s_
v3 - Standard_E20s_v3
- Standard_E32s_
v3 - Standard_E32s_v3
- Standard_E64s_
v3 - Standard_E64s_v3
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_DS12_
v2 - Standard_DS12_v2
- Standard_DS13_
v2 - Standard_DS13_v2
- Standard_DS14_
v2 - Standard_DS14_v2
- Standard_DS15_
v2 - Standard_DS15_v2
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Open
Shift Container Service VMSize_Standard_D2s_ v3 - Standard_D2s_v3
- Open
Shift Container Service VMSize_Standard_D4s_ v3 - Standard_D4s_v3
- Open
Shift Container Service VMSize_Standard_D8s_ v3 - Standard_D8s_v3
- Open
Shift Container Service VMSize_Standard_D16s_ v3 - Standard_D16s_v3
- Open
Shift Container Service VMSize_Standard_D32s_ v3 - Standard_D32s_v3
- Open
Shift Container Service VMSize_Standard_D64s_ v3 - Standard_D64s_v3
- Open
Shift Container Service VMSize_Standard_DS4_ v2 - Standard_DS4_v2
- Open
Shift Container Service VMSize_Standard_DS5_ v2 - Standard_DS5_v2
- Open
Shift Container Service VMSize_Standard_F8s_ v2 - Standard_F8s_v2
- Open
Shift Container Service VMSize_Standard_F16s_ v2 - Standard_F16s_v2
- Open
Shift Container Service VMSize_Standard_F32s_ v2 - Standard_F32s_v2
- Open
Shift Container Service VMSize_Standard_F64s_ v2 - Standard_F64s_v2
- Open
Shift Container Service VMSize_Standard_F72s_ v2 - Standard_F72s_v2
- Open
Shift Container Service VMSize_Standard_F8s - Standard_F8s
- Open
Shift Container Service VMSize_Standard_F16s - Standard_F16s
- Open
Shift Container Service VMSize_Standard_E4s_ v3 - Standard_E4s_v3
- Open
Shift Container Service VMSize_Standard_E8s_ v3 - Standard_E8s_v3
- Open
Shift Container Service VMSize_Standard_E16s_ v3 - Standard_E16s_v3
- Open
Shift Container Service VMSize_Standard_E20s_ v3 - Standard_E20s_v3
- Open
Shift Container Service VMSize_Standard_E32s_ v3 - Standard_E32s_v3
- Open
Shift Container Service VMSize_Standard_E64s_ v3 - Standard_E64s_v3
- Open
Shift Container Service VMSize_Standard_GS2 - Standard_GS2
- Open
Shift Container Service VMSize_Standard_GS3 - Standard_GS3
- Open
Shift Container Service VMSize_Standard_GS4 - Standard_GS4
- Open
Shift Container Service VMSize_Standard_GS5 - Standard_GS5
- Open
Shift Container Service VMSize_Standard_DS12_ v2 - Standard_DS12_v2
- Open
Shift Container Service VMSize_Standard_DS13_ v2 - Standard_DS13_v2
- Open
Shift Container Service VMSize_Standard_DS14_ v2 - Standard_DS14_v2
- Open
Shift Container Service VMSize_Standard_DS15_ v2 - Standard_DS15_v2
- Open
Shift Container Service VMSize_Standard_L4s - Standard_L4s
- Open
Shift Container Service VMSize_Standard_L8s - Standard_L8s
- Open
Shift Container Service VMSize_Standard_L16s - Standard_L16s
- Open
Shift Container Service VMSize_Standard_L32s - Standard_L32s
- Standard_D2s_
v3 - Standard_D2s_v3
- Standard_D4s_
v3 - Standard_D4s_v3
- Standard_D8s_
v3 - Standard_D8s_v3
- Standard_D16s_
v3 - Standard_D16s_v3
- Standard_D32s_
v3 - Standard_D32s_v3
- Standard_D64s_
v3 - Standard_D64s_v3
- Standard_DS4_
v2 - Standard_DS4_v2
- Standard_DS5_
v2 - Standard_DS5_v2
- Standard_F8s_
v2 - Standard_F8s_v2
- Standard_F16s_
v2 - Standard_F16s_v2
- Standard_F32s_
v2 - Standard_F32s_v2
- Standard_F64s_
v2 - Standard_F64s_v2
- Standard_F72s_
v2 - Standard_F72s_v2
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_E4s_
v3 - Standard_E4s_v3
- Standard_E8s_
v3 - Standard_E8s_v3
- Standard_E16s_
v3 - Standard_E16s_v3
- Standard_E20s_
v3 - Standard_E20s_v3
- Standard_E32s_
v3 - Standard_E32s_v3
- Standard_E64s_
v3 - Standard_E64s_v3
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_DS12_
v2 - Standard_DS12_v2
- Standard_DS13_
v2 - Standard_DS13_v2
- Standard_DS14_
v2 - Standard_DS14_v2
- Standard_DS15_
v2 - Standard_DS15_v2
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- Standard_D2s_
v3 - Standard_D2s_v3
- Standard_D4s_
v3 - Standard_D4s_v3
- Standard_D8s_
v3 - Standard_D8s_v3
- Standard_D16s_
v3 - Standard_D16s_v3
- Standard_D32s_
v3 - Standard_D32s_v3
- Standard_D64s_
v3 - Standard_D64s_v3
- Standard_DS4_
v2 - Standard_DS4_v2
- Standard_DS5_
v2 - Standard_DS5_v2
- Standard_F8s_
v2 - Standard_F8s_v2
- Standard_F16s_
v2 - Standard_F16s_v2
- Standard_F32s_
v2 - Standard_F32s_v2
- Standard_F64s_
v2 - Standard_F64s_v2
- Standard_F72s_
v2 - Standard_F72s_v2
- Standard_F8s
- Standard_F8s
- Standard_F16s
- Standard_F16s
- Standard_E4s_
v3 - Standard_E4s_v3
- Standard_E8s_
v3 - Standard_E8s_v3
- Standard_E16s_
v3 - Standard_E16s_v3
- Standard_E20s_
v3 - Standard_E20s_v3
- Standard_E32s_
v3 - Standard_E32s_v3
- Standard_E64s_
v3 - Standard_E64s_v3
- Standard_GS2
- Standard_GS2
- Standard_GS3
- Standard_GS3
- Standard_GS4
- Standard_GS4
- Standard_GS5
- Standard_GS5
- Standard_DS12_
v2 - Standard_DS12_v2
- Standard_DS13_
v2 - Standard_DS13_v2
- Standard_DS14_
v2 - Standard_DS14_v2
- Standard_DS15_
v2 - Standard_DS15_v2
- Standard_L4s
- Standard_L4s
- Standard_L8s
- Standard_L8s
- Standard_L16s
- Standard_L16s
- Standard_L32s
- Standard_L32s
- STANDARD_D2S_V3
- Standard_D2s_v3
- STANDARD_D4S_V3
- Standard_D4s_v3
- STANDARD_D8S_V3
- Standard_D8s_v3
- STANDARD_D16S_V3
- Standard_D16s_v3
- STANDARD_D32S_V3
- Standard_D32s_v3
- STANDARD_D64S_V3
- Standard_D64s_v3
- STANDARD_DS4_V2
- Standard_DS4_v2
- STANDARD_DS5_V2
- Standard_DS5_v2
- STANDARD_F8S_V2
- Standard_F8s_v2
- STANDARD_F16S_V2
- Standard_F16s_v2
- STANDARD_F32S_V2
- Standard_F32s_v2
- STANDARD_F64S_V2
- Standard_F64s_v2
- STANDARD_F72S_V2
- Standard_F72s_v2
- STANDARD_F8S
- Standard_F8s
- STANDARD_F16S
- Standard_F16s
- STANDARD_E4S_V3
- Standard_E4s_v3
- STANDARD_E8S_V3
- Standard_E8s_v3
- STANDARD_E16S_V3
- Standard_E16s_v3
- STANDARD_E20S_V3
- Standard_E20s_v3
- STANDARD_E32S_V3
- Standard_E32s_v3
- STANDARD_E64S_V3
- Standard_E64s_v3
- STANDARD_GS2
- Standard_GS2
- STANDARD_GS3
- Standard_GS3
- STANDARD_GS4
- Standard_GS4
- STANDARD_GS5
- Standard_GS5
- STANDARD_DS12_V2
- Standard_DS12_v2
- STANDARD_DS13_V2
- Standard_DS13_v2
- STANDARD_DS14_V2
- Standard_DS14_v2
- STANDARD_DS15_V2
- Standard_DS15_v2
- STANDARD_L4S
- Standard_L4s
- STANDARD_L8S
- Standard_L8s
- STANDARD_L16S
- Standard_L16s
- STANDARD_L32S
- Standard_L32s
- "Standard_D2s_
v3" - Standard_D2s_v3
- "Standard_D4s_
v3" - Standard_D4s_v3
- "Standard_D8s_
v3" - Standard_D8s_v3
- "Standard_D16s_
v3" - Standard_D16s_v3
- "Standard_D32s_
v3" - Standard_D32s_v3
- "Standard_D64s_
v3" - Standard_D64s_v3
- "Standard_DS4_
v2" - Standard_DS4_v2
- "Standard_DS5_
v2" - Standard_DS5_v2
- "Standard_F8s_
v2" - Standard_F8s_v2
- "Standard_F16s_
v2" - Standard_F16s_v2
- "Standard_F32s_
v2" - Standard_F32s_v2
- "Standard_F64s_
v2" - Standard_F64s_v2
- "Standard_F72s_
v2" - Standard_F72s_v2
- "Standard_F8s"
- Standard_F8s
- "Standard_F16s"
- Standard_F16s
- "Standard_E4s_
v3" - Standard_E4s_v3
- "Standard_E8s_
v3" - Standard_E8s_v3
- "Standard_E16s_
v3" - Standard_E16s_v3
- "Standard_E20s_
v3" - Standard_E20s_v3
- "Standard_E32s_
v3" - Standard_E32s_v3
- "Standard_E64s_
v3" - Standard_E64s_v3
- "Standard_GS2"
- Standard_GS2
- "Standard_GS3"
- Standard_GS3
- "Standard_GS4"
- Standard_GS4
- "Standard_GS5"
- Standard_GS5
- "Standard_DS12_
v2" - Standard_DS12_v2
- "Standard_DS13_
v2" - Standard_DS13_v2
- "Standard_DS14_
v2" - Standard_DS14_v2
- "Standard_DS15_
v2" - Standard_DS15_v2
- "Standard_L4s"
- Standard_L4s
- "Standard_L8s"
- Standard_L8s
- "Standard_L16s"
- Standard_L16s
- "Standard_L32s"
- Standard_L32s
OpenShiftManagedClusterAADIdentityProvider, OpenShiftManagedClusterAADIdentityProviderArgs
- Client
Id string - The clientId password associated with the provider.
- Customer
Admin stringGroup Id - The groupId to be granted cluster admin role.
- Secret string
- The secret password associated with the provider.
- Tenant
Id string - The tenantId associated with the provider.
- Client
Id string - The clientId password associated with the provider.
- Customer
Admin stringGroup Id - The groupId to be granted cluster admin role.
- Secret string
- The secret password associated with the provider.
- Tenant
Id string - The tenantId associated with the provider.
- client
Id String - The clientId password associated with the provider.
- customer
Admin StringGroup Id - The groupId to be granted cluster admin role.
- secret String
- The secret password associated with the provider.
- tenant
Id String - The tenantId associated with the provider.
- client
Id string - The clientId password associated with the provider.
- customer
Admin stringGroup Id - The groupId to be granted cluster admin role.
- secret string
- The secret password associated with the provider.
- tenant
Id string - The tenantId associated with the provider.
- client_
id str - The clientId password associated with the provider.
- customer_
admin_ strgroup_ id - The groupId to be granted cluster admin role.
- secret str
- The secret password associated with the provider.
- tenant_
id str - The tenantId associated with the provider.
- client
Id String - The clientId password associated with the provider.
- customer
Admin StringGroup Id - The groupId to be granted cluster admin role.
- secret String
- The secret password associated with the provider.
- tenant
Id String - The tenantId associated with the provider.
OpenShiftManagedClusterAADIdentityProviderResponse, OpenShiftManagedClusterAADIdentityProviderResponseArgs
- Client
Id string - The clientId password associated with the provider.
- Customer
Admin stringGroup Id - The groupId to be granted cluster admin role.
- Secret string
- The secret password associated with the provider.
- Tenant
Id string - The tenantId associated with the provider.
- Client
Id string - The clientId password associated with the provider.
- Customer
Admin stringGroup Id - The groupId to be granted cluster admin role.
- Secret string
- The secret password associated with the provider.
- Tenant
Id string - The tenantId associated with the provider.
- client
Id String - The clientId password associated with the provider.
- customer
Admin StringGroup Id - The groupId to be granted cluster admin role.
- secret String
- The secret password associated with the provider.
- tenant
Id String - The tenantId associated with the provider.
- client
Id string - The clientId password associated with the provider.
- customer
Admin stringGroup Id - The groupId to be granted cluster admin role.
- secret string
- The secret password associated with the provider.
- tenant
Id string - The tenantId associated with the provider.
- client_
id str - The clientId password associated with the provider.
- customer_
admin_ strgroup_ id - The groupId to be granted cluster admin role.
- secret str
- The secret password associated with the provider.
- tenant_
id str - The tenantId associated with the provider.
- client
Id String - The clientId password associated with the provider.
- customer
Admin StringGroup Id - The groupId to be granted cluster admin role.
- secret String
- The secret password associated with the provider.
- tenant
Id String - The tenantId associated with the provider.
OpenShiftManagedClusterAgentPoolProfile, OpenShiftManagedClusterAgentPoolProfileArgs
- Count int
- Number of agents (VMs) to host docker containers.
- Name string
- Unique name of the pool profile in the context of the subscription and resource group.
- Vm
Size string | Pulumi.Azure Native. Container Service. Open Shift Container Service VMSize - Size of agent VMs.
- Os
Type string | Pulumi.Azure Native. Container Service. OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Role
string | Pulumi.
Azure Native. Container Service. Open Shift Agent Pool Profile Role - Define the role of the AgentPoolProfile.
- Subnet
Cidr string - Subnet CIDR for the peering.
- Count int
- Number of agents (VMs) to host docker containers.
- Name string
- Unique name of the pool profile in the context of the subscription and resource group.
- Vm
Size string | OpenShift Container Service VMSize - Size of agent VMs.
- Os
Type string | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Role
string | Open
Shift Agent Pool Profile Role - Define the role of the AgentPoolProfile.
- Subnet
Cidr string - Subnet CIDR for the peering.
- count Integer
- Number of agents (VMs) to host docker containers.
- name String
- Unique name of the pool profile in the context of the subscription and resource group.
- vm
Size String | OpenShift Container Service VMSize - Size of agent VMs.
- os
Type String | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role
String | Open
Shift Agent Pool Profile Role - Define the role of the AgentPoolProfile.
- subnet
Cidr String - Subnet CIDR for the peering.
- count number
- Number of agents (VMs) to host docker containers.
- name string
- Unique name of the pool profile in the context of the subscription and resource group.
- vm
Size string | OpenShift Container Service VMSize - Size of agent VMs.
- os
Type string | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role
string | Open
Shift Agent Pool Profile Role - Define the role of the AgentPoolProfile.
- subnet
Cidr string - Subnet CIDR for the peering.
- count int
- Number of agents (VMs) to host docker containers.
- name str
- Unique name of the pool profile in the context of the subscription and resource group.
- vm_
size str | OpenShift Container Service VMSize - Size of agent VMs.
- os_
type str | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role
str | Open
Shift Agent Pool Profile Role - Define the role of the AgentPoolProfile.
- subnet_
cidr str - Subnet CIDR for the peering.
- count Number
- Number of agents (VMs) to host docker containers.
- name String
- Unique name of the pool profile in the context of the subscription and resource group.
- vm
Size String | "Standard_D2s_v3" | "Standard_D4s_ v3" | "Standard_D8s_ v3" | "Standard_D16s_ v3" | "Standard_D32s_ v3" | "Standard_D64s_ v3" | "Standard_DS4_ v2" | "Standard_DS5_ v2" | "Standard_F8s_ v2" | "Standard_F16s_ v2" | "Standard_F32s_ v2" | "Standard_F64s_ v2" | "Standard_F72s_ v2" | "Standard_F8s" | "Standard_F16s" | "Standard_E4s_ v3" | "Standard_E8s_ v3" | "Standard_E16s_ v3" | "Standard_E20s_ v3" | "Standard_E32s_ v3" | "Standard_E64s_ v3" | "Standard_GS2" | "Standard_GS3" | "Standard_GS4" | "Standard_GS5" | "Standard_DS12_ v2" | "Standard_DS13_ v2" | "Standard_DS14_ v2" | "Standard_DS15_ v2" | "Standard_L4s" | "Standard_L8s" | "Standard_L16s" | "Standard_L32s" - Size of agent VMs.
- os
Type String | "Linux" | "Windows" - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role String | "compute" | "infra"
- Define the role of the AgentPoolProfile.
- subnet
Cidr String - Subnet CIDR for the peering.
OpenShiftManagedClusterAgentPoolProfileResponse, OpenShiftManagedClusterAgentPoolProfileResponseArgs
- Count int
- Number of agents (VMs) to host docker containers.
- Name string
- Unique name of the pool profile in the context of the subscription and resource group.
- Vm
Size string - Size of agent VMs.
- Os
Type string - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Role string
- Define the role of the AgentPoolProfile.
- Subnet
Cidr string - Subnet CIDR for the peering.
- Count int
- Number of agents (VMs) to host docker containers.
- Name string
- Unique name of the pool profile in the context of the subscription and resource group.
- Vm
Size string - Size of agent VMs.
- Os
Type string - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Role string
- Define the role of the AgentPoolProfile.
- Subnet
Cidr string - Subnet CIDR for the peering.
- count Integer
- Number of agents (VMs) to host docker containers.
- name String
- Unique name of the pool profile in the context of the subscription and resource group.
- vm
Size String - Size of agent VMs.
- os
Type String - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role String
- Define the role of the AgentPoolProfile.
- subnet
Cidr String - Subnet CIDR for the peering.
- count number
- Number of agents (VMs) to host docker containers.
- name string
- Unique name of the pool profile in the context of the subscription and resource group.
- vm
Size string - Size of agent VMs.
- os
Type string - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role string
- Define the role of the AgentPoolProfile.
- subnet
Cidr string - Subnet CIDR for the peering.
- count int
- Number of agents (VMs) to host docker containers.
- name str
- Unique name of the pool profile in the context of the subscription and resource group.
- vm_
size str - Size of agent VMs.
- os_
type str - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role str
- Define the role of the AgentPoolProfile.
- subnet_
cidr str - Subnet CIDR for the peering.
- count Number
- Number of agents (VMs) to host docker containers.
- name String
- Unique name of the pool profile in the context of the subscription and resource group.
- vm
Size String - Size of agent VMs.
- os
Type String - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- role String
- Define the role of the AgentPoolProfile.
- subnet
Cidr String - Subnet CIDR for the peering.
OpenShiftManagedClusterAuthProfile, OpenShiftManagedClusterAuthProfileArgs
- Identity
Providers List<Pulumi.Azure Native. Container Service. Inputs. Open Shift Managed Cluster Identity Provider> - Type of authentication profile to use.
- Identity
Providers []OpenShift Managed Cluster Identity Provider - Type of authentication profile to use.
- identity
Providers List<OpenShift Managed Cluster Identity Provider> - Type of authentication profile to use.
- identity
Providers OpenShift Managed Cluster Identity Provider[] - Type of authentication profile to use.
- identity_
providers Sequence[OpenShift Managed Cluster Identity Provider] - Type of authentication profile to use.
- identity
Providers List<Property Map> - Type of authentication profile to use.
OpenShiftManagedClusterAuthProfileResponse, OpenShiftManagedClusterAuthProfileResponseArgs
- Identity
Providers List<Pulumi.Azure Native. Container Service. Inputs. Open Shift Managed Cluster Identity Provider Response> - Type of authentication profile to use.
- Identity
Providers []OpenShift Managed Cluster Identity Provider Response - Type of authentication profile to use.
- identity
Providers List<OpenShift Managed Cluster Identity Provider Response> - Type of authentication profile to use.
- identity
Providers OpenShift Managed Cluster Identity Provider Response[] - Type of authentication profile to use.
- identity_
providers Sequence[OpenShift Managed Cluster Identity Provider Response] - Type of authentication profile to use.
- identity
Providers List<Property Map> - Type of authentication profile to use.
OpenShiftManagedClusterIdentityProvider, OpenShiftManagedClusterIdentityProviderArgs
- Name string
- Name of the provider.
- Provider
Pulumi.
Azure Native. Container Service. Inputs. Open Shift Managed Cluster AADIdentity Provider - Configuration of the provider.
- Name string
- Name of the provider.
- Provider
Open
Shift Managed Cluster AADIdentity Provider - Configuration of the provider.
- name String
- Name of the provider.
- provider
Open
Shift Managed Cluster AADIdentity Provider - Configuration of the provider.
- name string
- Name of the provider.
- provider
Open
Shift Managed Cluster AADIdentity Provider - Configuration of the provider.
- name str
- Name of the provider.
- provider
Open
Shift Managed Cluster AADIdentity Provider - Configuration of the provider.
- name String
- Name of the provider.
- provider Property Map
- Configuration of the provider.
OpenShiftManagedClusterIdentityProviderResponse, OpenShiftManagedClusterIdentityProviderResponseArgs
- Name string
- Name of the provider.
- Provider
Pulumi.
Azure Native. Container Service. Inputs. Open Shift Managed Cluster AADIdentity Provider Response - Configuration of the provider.
- Name string
- Name of the provider.
- Provider
Open
Shift Managed Cluster AADIdentity Provider Response - Configuration of the provider.
- name String
- Name of the provider.
- provider
Open
Shift Managed Cluster AADIdentity Provider Response - Configuration of the provider.
- name string
- Name of the provider.
- provider
Open
Shift Managed Cluster AADIdentity Provider Response - Configuration of the provider.
- name str
- Name of the provider.
- provider
Open
Shift Managed Cluster AADIdentity Provider Response - Configuration of the provider.
- name String
- Name of the provider.
- provider Property Map
- Configuration of the provider.
OpenShiftManagedClusterMasterPoolProfile, OpenShiftManagedClusterMasterPoolProfileArgs
- Count int
- Number of masters (VMs) to host docker containers. The default value is 3.
- Vm
Size string | Pulumi.Azure Native. Container Service. Open Shift Container Service VMSize - Size of agent VMs.
- Name string
- Unique name of the master pool profile in the context of the subscription and resource group.
- Os
Type string | Pulumi.Azure Native. Container Service. OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Subnet
Cidr string - Subnet CIDR for the peering.
- Count int
- Number of masters (VMs) to host docker containers. The default value is 3.
- Vm
Size string | OpenShift Container Service VMSize - Size of agent VMs.
- Name string
- Unique name of the master pool profile in the context of the subscription and resource group.
- Os
Type string | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Subnet
Cidr string - Subnet CIDR for the peering.
- count Integer
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm
Size String | OpenShift Container Service VMSize - Size of agent VMs.
- name String
- Unique name of the master pool profile in the context of the subscription and resource group.
- os
Type String | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet
Cidr String - Subnet CIDR for the peering.
- count number
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm
Size string | OpenShift Container Service VMSize - Size of agent VMs.
- name string
- Unique name of the master pool profile in the context of the subscription and resource group.
- os
Type string | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet
Cidr string - Subnet CIDR for the peering.
- count int
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm_
size str | OpenShift Container Service VMSize - Size of agent VMs.
- name str
- Unique name of the master pool profile in the context of the subscription and resource group.
- os_
type str | OSType - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet_
cidr str - Subnet CIDR for the peering.
- count Number
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm
Size String | "Standard_D2s_v3" | "Standard_D4s_ v3" | "Standard_D8s_ v3" | "Standard_D16s_ v3" | "Standard_D32s_ v3" | "Standard_D64s_ v3" | "Standard_DS4_ v2" | "Standard_DS5_ v2" | "Standard_F8s_ v2" | "Standard_F16s_ v2" | "Standard_F32s_ v2" | "Standard_F64s_ v2" | "Standard_F72s_ v2" | "Standard_F8s" | "Standard_F16s" | "Standard_E4s_ v3" | "Standard_E8s_ v3" | "Standard_E16s_ v3" | "Standard_E20s_ v3" | "Standard_E32s_ v3" | "Standard_E64s_ v3" | "Standard_GS2" | "Standard_GS3" | "Standard_GS4" | "Standard_GS5" | "Standard_DS12_ v2" | "Standard_DS13_ v2" | "Standard_DS14_ v2" | "Standard_DS15_ v2" | "Standard_L4s" | "Standard_L8s" | "Standard_L16s" | "Standard_L32s" - Size of agent VMs.
- name String
- Unique name of the master pool profile in the context of the subscription and resource group.
- os
Type String | "Linux" | "Windows" - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet
Cidr String - Subnet CIDR for the peering.
OpenShiftManagedClusterMasterPoolProfileResponse, OpenShiftManagedClusterMasterPoolProfileResponseArgs
- Count int
- Number of masters (VMs) to host docker containers. The default value is 3.
- Vm
Size string - Size of agent VMs.
- Name string
- Unique name of the master pool profile in the context of the subscription and resource group.
- Os
Type string - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Subnet
Cidr string - Subnet CIDR for the peering.
- Count int
- Number of masters (VMs) to host docker containers. The default value is 3.
- Vm
Size string - Size of agent VMs.
- Name string
- Unique name of the master pool profile in the context of the subscription and resource group.
- Os
Type string - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- Subnet
Cidr string - Subnet CIDR for the peering.
- count Integer
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm
Size String - Size of agent VMs.
- name String
- Unique name of the master pool profile in the context of the subscription and resource group.
- os
Type String - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet
Cidr String - Subnet CIDR for the peering.
- count number
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm
Size string - Size of agent VMs.
- name string
- Unique name of the master pool profile in the context of the subscription and resource group.
- os
Type string - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet
Cidr string - Subnet CIDR for the peering.
- count int
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm_
size str - Size of agent VMs.
- name str
- Unique name of the master pool profile in the context of the subscription and resource group.
- os_
type str - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet_
cidr str - Subnet CIDR for the peering.
- count Number
- Number of masters (VMs) to host docker containers. The default value is 3.
- vm
Size String - Size of agent VMs.
- name String
- Unique name of the master pool profile in the context of the subscription and resource group.
- os
Type String - OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
- subnet
Cidr String - Subnet CIDR for the peering.
OpenShiftRouterProfile, OpenShiftRouterProfileArgs
- Name string
- Name of the router profile.
- Name string
- Name of the router profile.
- name String
- Name of the router profile.
- name string
- Name of the router profile.
- name str
- Name of the router profile.
- name String
- Name of the router profile.
OpenShiftRouterProfileResponse, OpenShiftRouterProfileResponseArgs
- Fqdn string
- Auto-allocated FQDN for the OpenShift router.
- Public
Subdomain string - DNS subdomain for OpenShift router.
- Name string
- Name of the router profile.
- Fqdn string
- Auto-allocated FQDN for the OpenShift router.
- Public
Subdomain string - DNS subdomain for OpenShift router.
- Name string
- Name of the router profile.
- fqdn String
- Auto-allocated FQDN for the OpenShift router.
- public
Subdomain String - DNS subdomain for OpenShift router.
- name String
- Name of the router profile.
- fqdn string
- Auto-allocated FQDN for the OpenShift router.
- public
Subdomain string - DNS subdomain for OpenShift router.
- name string
- Name of the router profile.
- fqdn str
- Auto-allocated FQDN for the OpenShift router.
- public_
subdomain str - DNS subdomain for OpenShift router.
- name str
- Name of the router profile.
- fqdn String
- Auto-allocated FQDN for the OpenShift router.
- public
Subdomain String - DNS subdomain for OpenShift router.
- name String
- Name of the router profile.
PurchasePlan, PurchasePlanArgs
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The plan ID.
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The plan ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The plan ID.
- name string
- The plan ID.
- product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code string - The promotion code.
- publisher string
- The plan ID.
- name str
- The plan ID.
- product str
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion_
code str - The promotion code.
- publisher str
- The plan ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The plan ID.
PurchasePlanResponse, PurchasePlanResponseArgs
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The plan ID.
- Name string
- The plan ID.
- Product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- Promotion
Code string - The promotion code.
- Publisher string
- The plan ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The plan ID.
- name string
- The plan ID.
- product string
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code string - The promotion code.
- publisher string
- The plan ID.
- name str
- The plan ID.
- product str
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion_
code str - The promotion code.
- publisher str
- The plan ID.
- name String
- The plan ID.
- product String
- Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
- promotion
Code String - The promotion code.
- publisher String
- The plan ID.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:containerservice:OpenShiftManagedCluster clustername1 /subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/openShiftManagedClusters/clustername1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0