We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages as an Azure Container Group instance.
Example Usage
This example provisions a Basic Container.
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleGroup = new Azure.ContainerService.Group("exampleGroup", new Azure.ContainerService.GroupArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
IpAddressType = "public",
DnsNameLabel = "aci-label",
OsType = "Linux",
Containers =
{
new Azure.ContainerService.Inputs.GroupContainerArgs
{
Name = "hello-world",
Image = "mcr.microsoft.com/azuredocs/aci-helloworld:latest",
Cpu = 0.5,
Memory = 1.5,
Ports =
{
new Azure.ContainerService.Inputs.GroupContainerPortArgs
{
Port = 443,
Protocol = "TCP",
},
},
},
new Azure.ContainerService.Inputs.GroupContainerArgs
{
Name = "sidecar",
Image = "mcr.microsoft.com/azuredocs/aci-tutorial-sidecar",
Cpu = 0.5,
Memory = 1.5,
},
},
Tags =
{
{ "environment", "testing" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/containerservice"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = containerservice.NewGroup(ctx, "exampleGroup", &containerservice.GroupArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
IpAddressType: pulumi.String("public"),
DnsNameLabel: pulumi.String("aci-label"),
OsType: pulumi.String("Linux"),
Containers: containerservice.GroupContainerArray{
&containerservice.GroupContainerArgs{
Name: pulumi.String("hello-world"),
Image: pulumi.String("mcr.microsoft.com/azuredocs/aci-helloworld:latest"),
Cpu: pulumi.Float64(0.5),
Memory: pulumi.Float64(1.5),
Ports: containerservice.GroupContainerPortArray{
&containerservice.GroupContainerPortArgs{
Port: pulumi.Int(443),
Protocol: pulumi.String("TCP"),
},
},
},
&containerservice.GroupContainerArgs{
Name: pulumi.String("sidecar"),
Image: pulumi.String("mcr.microsoft.com/azuredocs/aci-tutorial-sidecar"),
Cpu: pulumi.Float64(0.5),
Memory: pulumi.Float64(1.5),
},
},
Tags: pulumi.StringMap{
"environment": pulumi.String("testing"),
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleGroup = new azure.containerservice.Group("exampleGroup", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
ipAddressType: "public",
dnsNameLabel: "aci-label",
osType: "Linux",
containers: [
{
name: "hello-world",
image: "mcr.microsoft.com/azuredocs/aci-helloworld:latest",
cpu: "0.5",
memory: "1.5",
ports: [{
port: 443,
protocol: "TCP",
}],
},
{
name: "sidecar",
image: "mcr.microsoft.com/azuredocs/aci-tutorial-sidecar",
cpu: "0.5",
memory: "1.5",
},
],
tags: {
environment: "testing",
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_group = azure.containerservice.Group("exampleGroup",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
ip_address_type="public",
dns_name_label="aci-label",
os_type="Linux",
containers=[
azure.containerservice.GroupContainerArgs(
name="hello-world",
image="mcr.microsoft.com/azuredocs/aci-helloworld:latest",
cpu=0.5,
memory=1.5,
ports=[azure.containerservice.GroupContainerPortArgs(
port=443,
protocol="TCP",
)],
),
azure.containerservice.GroupContainerArgs(
name="sidecar",
image="mcr.microsoft.com/azuredocs/aci-tutorial-sidecar",
cpu=0.5,
memory=1.5,
),
],
tags={
"environment": "testing",
})
Example coming soon!
Create Group Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Group(name: string, args: GroupArgs, opts?: CustomResourceOptions);@overload
def Group(resource_name: str,
args: GroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Group(resource_name: str,
opts: Optional[ResourceOptions] = None,
containers: Optional[Sequence[GroupContainerArgs]] = None,
resource_group_name: Optional[str] = None,
os_type: Optional[str] = None,
image_registry_credentials: Optional[Sequence[GroupImageRegistryCredentialArgs]] = None,
exposed_ports: Optional[Sequence[GroupExposedPortArgs]] = None,
identity: Optional[GroupIdentityArgs] = None,
dns_name_label: Optional[str] = None,
ip_address_type: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
network_profile_id: Optional[str] = None,
dns_config: Optional[GroupDnsConfigArgs] = None,
diagnostics: Optional[GroupDiagnosticsArgs] = None,
restart_policy: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewGroup(ctx *Context, name string, args GroupArgs, opts ...ResourceOption) (*Group, error)public Group(string name, GroupArgs args, CustomResourceOptions? opts = null)type: azure:containerservice:Group
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 GroupArgs
- 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 GroupArgs
- 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 GroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GroupArgs
- 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 azureGroupResource = new Azure.ContainerService.Group("azureGroupResource", new()
{
Containers = new[]
{
new Azure.ContainerService.Inputs.GroupContainerArgs
{
Cpu = 0,
Image = "string",
Memory = 0,
Name = "string",
Commands = new[]
{
"string",
},
EnvironmentVariables =
{
{ "string", "string" },
},
Gpu = new Azure.ContainerService.Inputs.GroupContainerGpuArgs
{
Count = 0,
Sku = "string",
},
LivenessProbe = new Azure.ContainerService.Inputs.GroupContainerLivenessProbeArgs
{
Execs = new[]
{
"string",
},
FailureThreshold = 0,
HttpGets = new[]
{
new Azure.ContainerService.Inputs.GroupContainerLivenessProbeHttpGetArgs
{
Path = "string",
Port = 0,
Scheme = "string",
},
},
InitialDelaySeconds = 0,
PeriodSeconds = 0,
SuccessThreshold = 0,
TimeoutSeconds = 0,
},
Ports = new[]
{
new Azure.ContainerService.Inputs.GroupContainerPortArgs
{
Port = 0,
Protocol = "string",
},
},
ReadinessProbe = new Azure.ContainerService.Inputs.GroupContainerReadinessProbeArgs
{
Execs = new[]
{
"string",
},
FailureThreshold = 0,
HttpGets = new[]
{
new Azure.ContainerService.Inputs.GroupContainerReadinessProbeHttpGetArgs
{
Path = "string",
Port = 0,
Scheme = "string",
},
},
InitialDelaySeconds = 0,
PeriodSeconds = 0,
SuccessThreshold = 0,
TimeoutSeconds = 0,
},
SecureEnvironmentVariables =
{
{ "string", "string" },
},
Volumes = new[]
{
new Azure.ContainerService.Inputs.GroupContainerVolumeArgs
{
MountPath = "string",
Name = "string",
EmptyDir = false,
GitRepo = new Azure.ContainerService.Inputs.GroupContainerVolumeGitRepoArgs
{
Url = "string",
Directory = "string",
Revision = "string",
},
ReadOnly = false,
Secret =
{
{ "string", "string" },
},
ShareName = "string",
StorageAccountKey = "string",
StorageAccountName = "string",
},
},
},
},
ResourceGroupName = "string",
OsType = "string",
ImageRegistryCredentials = new[]
{
new Azure.ContainerService.Inputs.GroupImageRegistryCredentialArgs
{
Password = "string",
Server = "string",
Username = "string",
},
},
ExposedPorts = new[]
{
new Azure.ContainerService.Inputs.GroupExposedPortArgs
{
Port = 0,
Protocol = "string",
},
},
Identity = new Azure.ContainerService.Inputs.GroupIdentityArgs
{
Type = "string",
IdentityIds = new[]
{
"string",
},
PrincipalId = "string",
TenantId = "string",
},
DnsNameLabel = "string",
IpAddressType = "string",
Location = "string",
Name = "string",
NetworkProfileId = "string",
DnsConfig = new Azure.ContainerService.Inputs.GroupDnsConfigArgs
{
Nameservers = new[]
{
"string",
},
Options = new[]
{
"string",
},
SearchDomains = new[]
{
"string",
},
},
Diagnostics = new Azure.ContainerService.Inputs.GroupDiagnosticsArgs
{
LogAnalytics = new Azure.ContainerService.Inputs.GroupDiagnosticsLogAnalyticsArgs
{
WorkspaceId = "string",
WorkspaceKey = "string",
LogType = "string",
Metadata =
{
{ "string", "string" },
},
},
},
RestartPolicy = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := containerservice.NewGroup(ctx, "azureGroupResource", &containerservice.GroupArgs{
Containers: containerservice.GroupContainerArray{
&containerservice.GroupContainerArgs{
Cpu: pulumi.Float64(0),
Image: pulumi.String("string"),
Memory: pulumi.Float64(0),
Name: pulumi.String("string"),
Commands: pulumi.StringArray{
pulumi.String("string"),
},
EnvironmentVariables: pulumi.StringMap{
"string": pulumi.String("string"),
},
Gpu: &containerservice.GroupContainerGpuArgs{
Count: pulumi.Int(0),
Sku: pulumi.String("string"),
},
LivenessProbe: &containerservice.GroupContainerLivenessProbeArgs{
Execs: pulumi.StringArray{
pulumi.String("string"),
},
FailureThreshold: pulumi.Int(0),
HttpGets: containerservice.GroupContainerLivenessProbeHttpGetArray{
&containerservice.GroupContainerLivenessProbeHttpGetArgs{
Path: pulumi.String("string"),
Port: pulumi.Int(0),
Scheme: pulumi.String("string"),
},
},
InitialDelaySeconds: pulumi.Int(0),
PeriodSeconds: pulumi.Int(0),
SuccessThreshold: pulumi.Int(0),
TimeoutSeconds: pulumi.Int(0),
},
Ports: containerservice.GroupContainerPortArray{
&containerservice.GroupContainerPortArgs{
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
},
},
ReadinessProbe: &containerservice.GroupContainerReadinessProbeArgs{
Execs: pulumi.StringArray{
pulumi.String("string"),
},
FailureThreshold: pulumi.Int(0),
HttpGets: containerservice.GroupContainerReadinessProbeHttpGetArray{
&containerservice.GroupContainerReadinessProbeHttpGetArgs{
Path: pulumi.String("string"),
Port: pulumi.Int(0),
Scheme: pulumi.String("string"),
},
},
InitialDelaySeconds: pulumi.Int(0),
PeriodSeconds: pulumi.Int(0),
SuccessThreshold: pulumi.Int(0),
TimeoutSeconds: pulumi.Int(0),
},
SecureEnvironmentVariables: pulumi.StringMap{
"string": pulumi.String("string"),
},
Volumes: containerservice.GroupContainerVolumeArray{
&containerservice.GroupContainerVolumeArgs{
MountPath: pulumi.String("string"),
Name: pulumi.String("string"),
EmptyDir: pulumi.Bool(false),
GitRepo: &containerservice.GroupContainerVolumeGitRepoArgs{
Url: pulumi.String("string"),
Directory: pulumi.String("string"),
Revision: pulumi.String("string"),
},
ReadOnly: pulumi.Bool(false),
Secret: pulumi.StringMap{
"string": pulumi.String("string"),
},
ShareName: pulumi.String("string"),
StorageAccountKey: pulumi.String("string"),
StorageAccountName: pulumi.String("string"),
},
},
},
},
ResourceGroupName: pulumi.String("string"),
OsType: pulumi.String("string"),
ImageRegistryCredentials: containerservice.GroupImageRegistryCredentialArray{
&containerservice.GroupImageRegistryCredentialArgs{
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
ExposedPorts: containerservice.GroupExposedPortArray{
&containerservice.GroupExposedPortArgs{
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
},
},
Identity: &containerservice.GroupIdentityArgs{
Type: pulumi.String("string"),
IdentityIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
DnsNameLabel: pulumi.String("string"),
IpAddressType: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
NetworkProfileId: pulumi.String("string"),
DnsConfig: &containerservice.GroupDnsConfigArgs{
Nameservers: pulumi.StringArray{
pulumi.String("string"),
},
Options: pulumi.StringArray{
pulumi.String("string"),
},
SearchDomains: pulumi.StringArray{
pulumi.String("string"),
},
},
Diagnostics: &containerservice.GroupDiagnosticsArgs{
LogAnalytics: &containerservice.GroupDiagnosticsLogAnalyticsArgs{
WorkspaceId: pulumi.String("string"),
WorkspaceKey: pulumi.String("string"),
LogType: pulumi.String("string"),
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
RestartPolicy: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var azureGroupResource = new com.pulumi.azure.containerservice.Group("azureGroupResource", com.pulumi.azure.containerservice.GroupArgs.builder()
.containers(GroupContainerArgs.builder()
.cpu(0.0)
.image("string")
.memory(0.0)
.name("string")
.commands("string")
.environmentVariables(Map.of("string", "string"))
.gpu(GroupContainerGpuArgs.builder()
.count(0)
.sku("string")
.build())
.livenessProbe(GroupContainerLivenessProbeArgs.builder()
.execs("string")
.failureThreshold(0)
.httpGets(GroupContainerLivenessProbeHttpGetArgs.builder()
.path("string")
.port(0)
.scheme("string")
.build())
.initialDelaySeconds(0)
.periodSeconds(0)
.successThreshold(0)
.timeoutSeconds(0)
.build())
.ports(GroupContainerPortArgs.builder()
.port(0)
.protocol("string")
.build())
.readinessProbe(GroupContainerReadinessProbeArgs.builder()
.execs("string")
.failureThreshold(0)
.httpGets(GroupContainerReadinessProbeHttpGetArgs.builder()
.path("string")
.port(0)
.scheme("string")
.build())
.initialDelaySeconds(0)
.periodSeconds(0)
.successThreshold(0)
.timeoutSeconds(0)
.build())
.secureEnvironmentVariables(Map.of("string", "string"))
.volumes(GroupContainerVolumeArgs.builder()
.mountPath("string")
.name("string")
.emptyDir(false)
.gitRepo(GroupContainerVolumeGitRepoArgs.builder()
.url("string")
.directory("string")
.revision("string")
.build())
.readOnly(false)
.secret(Map.of("string", "string"))
.shareName("string")
.storageAccountKey("string")
.storageAccountName("string")
.build())
.build())
.resourceGroupName("string")
.osType("string")
.imageRegistryCredentials(GroupImageRegistryCredentialArgs.builder()
.password("string")
.server("string")
.username("string")
.build())
.exposedPorts(GroupExposedPortArgs.builder()
.port(0)
.protocol("string")
.build())
.identity(GroupIdentityArgs.builder()
.type("string")
.identityIds("string")
.principalId("string")
.tenantId("string")
.build())
.dnsNameLabel("string")
.ipAddressType("string")
.location("string")
.name("string")
.networkProfileId("string")
.dnsConfig(GroupDnsConfigArgs.builder()
.nameservers("string")
.options("string")
.searchDomains("string")
.build())
.diagnostics(GroupDiagnosticsArgs.builder()
.logAnalytics(GroupDiagnosticsLogAnalyticsArgs.builder()
.workspaceId("string")
.workspaceKey("string")
.logType("string")
.metadata(Map.of("string", "string"))
.build())
.build())
.restartPolicy("string")
.tags(Map.of("string", "string"))
.build());
azure_group_resource = azure.containerservice.Group("azureGroupResource",
containers=[{
"cpu": 0,
"image": "string",
"memory": 0,
"name": "string",
"commands": ["string"],
"environment_variables": {
"string": "string",
},
"gpu": {
"count": 0,
"sku": "string",
},
"liveness_probe": {
"execs": ["string"],
"failure_threshold": 0,
"http_gets": [{
"path": "string",
"port": 0,
"scheme": "string",
}],
"initial_delay_seconds": 0,
"period_seconds": 0,
"success_threshold": 0,
"timeout_seconds": 0,
},
"ports": [{
"port": 0,
"protocol": "string",
}],
"readiness_probe": {
"execs": ["string"],
"failure_threshold": 0,
"http_gets": [{
"path": "string",
"port": 0,
"scheme": "string",
}],
"initial_delay_seconds": 0,
"period_seconds": 0,
"success_threshold": 0,
"timeout_seconds": 0,
},
"secure_environment_variables": {
"string": "string",
},
"volumes": [{
"mount_path": "string",
"name": "string",
"empty_dir": False,
"git_repo": {
"url": "string",
"directory": "string",
"revision": "string",
},
"read_only": False,
"secret": {
"string": "string",
},
"share_name": "string",
"storage_account_key": "string",
"storage_account_name": "string",
}],
}],
resource_group_name="string",
os_type="string",
image_registry_credentials=[{
"password": "string",
"server": "string",
"username": "string",
}],
exposed_ports=[{
"port": 0,
"protocol": "string",
}],
identity={
"type": "string",
"identity_ids": ["string"],
"principal_id": "string",
"tenant_id": "string",
},
dns_name_label="string",
ip_address_type="string",
location="string",
name="string",
network_profile_id="string",
dns_config={
"nameservers": ["string"],
"options": ["string"],
"search_domains": ["string"],
},
diagnostics={
"log_analytics": {
"workspace_id": "string",
"workspace_key": "string",
"log_type": "string",
"metadata": {
"string": "string",
},
},
},
restart_policy="string",
tags={
"string": "string",
})
const azureGroupResource = new azure.containerservice.Group("azureGroupResource", {
containers: [{
cpu: 0,
image: "string",
memory: 0,
name: "string",
commands: ["string"],
environmentVariables: {
string: "string",
},
gpu: {
count: 0,
sku: "string",
},
livenessProbe: {
execs: ["string"],
failureThreshold: 0,
httpGets: [{
path: "string",
port: 0,
scheme: "string",
}],
initialDelaySeconds: 0,
periodSeconds: 0,
successThreshold: 0,
timeoutSeconds: 0,
},
ports: [{
port: 0,
protocol: "string",
}],
readinessProbe: {
execs: ["string"],
failureThreshold: 0,
httpGets: [{
path: "string",
port: 0,
scheme: "string",
}],
initialDelaySeconds: 0,
periodSeconds: 0,
successThreshold: 0,
timeoutSeconds: 0,
},
secureEnvironmentVariables: {
string: "string",
},
volumes: [{
mountPath: "string",
name: "string",
emptyDir: false,
gitRepo: {
url: "string",
directory: "string",
revision: "string",
},
readOnly: false,
secret: {
string: "string",
},
shareName: "string",
storageAccountKey: "string",
storageAccountName: "string",
}],
}],
resourceGroupName: "string",
osType: "string",
imageRegistryCredentials: [{
password: "string",
server: "string",
username: "string",
}],
exposedPorts: [{
port: 0,
protocol: "string",
}],
identity: {
type: "string",
identityIds: ["string"],
principalId: "string",
tenantId: "string",
},
dnsNameLabel: "string",
ipAddressType: "string",
location: "string",
name: "string",
networkProfileId: "string",
dnsConfig: {
nameservers: ["string"],
options: ["string"],
searchDomains: ["string"],
},
diagnostics: {
logAnalytics: {
workspaceId: "string",
workspaceKey: "string",
logType: "string",
metadata: {
string: "string",
},
},
},
restartPolicy: "string",
tags: {
string: "string",
},
});
type: azure:containerservice:Group
properties:
containers:
- commands:
- string
cpu: 0
environmentVariables:
string: string
gpu:
count: 0
sku: string
image: string
livenessProbe:
execs:
- string
failureThreshold: 0
httpGets:
- path: string
port: 0
scheme: string
initialDelaySeconds: 0
periodSeconds: 0
successThreshold: 0
timeoutSeconds: 0
memory: 0
name: string
ports:
- port: 0
protocol: string
readinessProbe:
execs:
- string
failureThreshold: 0
httpGets:
- path: string
port: 0
scheme: string
initialDelaySeconds: 0
periodSeconds: 0
successThreshold: 0
timeoutSeconds: 0
secureEnvironmentVariables:
string: string
volumes:
- emptyDir: false
gitRepo:
directory: string
revision: string
url: string
mountPath: string
name: string
readOnly: false
secret:
string: string
shareName: string
storageAccountKey: string
storageAccountName: string
diagnostics:
logAnalytics:
logType: string
metadata:
string: string
workspaceId: string
workspaceKey: string
dnsConfig:
nameservers:
- string
options:
- string
searchDomains:
- string
dnsNameLabel: string
exposedPorts:
- port: 0
protocol: string
identity:
identityIds:
- string
principalId: string
tenantId: string
type: string
imageRegistryCredentials:
- password: string
server: string
username: string
ipAddressType: string
location: string
name: string
networkProfileId: string
osType: string
resourceGroupName: string
restartPolicy: string
tags:
string: string
Group 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 Group resource accepts the following input properties:
- Containers
List<Group
Container> - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - Os
Type string - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - Resource
Group stringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- Diagnostics
Group
Diagnostics - A
diagnosticsblock as documented below. - Dns
Config GroupDns Config - A
dns_configblock as documented below. - Dns
Name stringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- Exposed
Ports List<GroupExposed Port> - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - Identity
Group
Identity - An
identityblock as defined below. - Image
Registry List<GroupCredentials Image Registry Credential> - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - Ip
Address stringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Network
Profile stringId - Network profile ID for deploying to virtual network.
- Restart
Policy string - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Containers
[]Group
Container Args - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - Os
Type string - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - Resource
Group stringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- Diagnostics
Group
Diagnostics Args - A
diagnosticsblock as documented below. - Dns
Config GroupDns Config Args - A
dns_configblock as documented below. - Dns
Name stringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- Exposed
Ports []GroupExposed Port Args - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - Identity
Group
Identity Args - An
identityblock as defined below. - Image
Registry []GroupCredentials Image Registry Credential Args - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - Ip
Address stringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Network
Profile stringId - Network profile ID for deploying to virtual network.
- Restart
Policy string - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags to assign to the resource.
- containers
List<Group
Container> - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - os
Type String - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource
Group StringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- diagnostics
Group
Diagnostics - A
diagnosticsblock as documented below. - dns
Config GroupDns Config - A
dns_configblock as documented below. - dns
Name StringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed
Ports List<GroupExposed Port> - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - identity
Group
Identity - An
identityblock as defined below. - image
Registry List<GroupCredentials Image Registry Credential> - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip
Address StringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network
Profile StringId - Network profile ID for deploying to virtual network.
- restart
Policy String - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags to assign to the resource.
- containers
Group
Container[] - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - os
Type string - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource
Group stringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- diagnostics
Group
Diagnostics - A
diagnosticsblock as documented below. - dns
Config GroupDns Config - A
dns_configblock as documented below. - dns
Name stringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed
Ports GroupExposed Port[] - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - identity
Group
Identity - An
identityblock as defined below. - image
Registry GroupCredentials Image Registry Credential[] - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip
Address stringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network
Profile stringId - Network profile ID for deploying to virtual network.
- restart
Policy string - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- containers
Sequence[Group
Container Args] - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - os_
type str - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource_
group_ strname - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- diagnostics
Group
Diagnostics Args - A
diagnosticsblock as documented below. - dns_
config GroupDns Config Args - A
dns_configblock as documented below. - dns_
name_ strlabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed_
ports Sequence[GroupExposed Port Args] - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - identity
Group
Identity Args - An
identityblock as defined below. - image_
registry_ Sequence[Groupcredentials Image Registry Credential Args] - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip_
address_ strtype - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network_
profile_ strid - Network profile ID for deploying to virtual network.
- restart_
policy str - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- containers List<Property Map>
- The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - os
Type String - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource
Group StringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- diagnostics Property Map
- A
diagnosticsblock as documented below. - dns
Config Property Map - A
dns_configblock as documented below. - dns
Name StringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed
Ports List<Property Map> - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - identity Property Map
- An
identityblock as defined below. - image
Registry List<Property Map>Credentials - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip
Address StringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network
Profile StringId - Network profile ID for deploying to virtual network.
- restart
Policy String - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Group resource produces the following output properties:
- fqdn str
- The FQDN of the container group derived from
dns_name_label. - id str
- The provider-assigned unique ID for this managed resource.
- ip_
address str - The IP address allocated to the container group.
Look up Existing Group Resource
Get an existing Group 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?: GroupState, opts?: CustomResourceOptions): Group@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
containers: Optional[Sequence[GroupContainerArgs]] = None,
diagnostics: Optional[GroupDiagnosticsArgs] = None,
dns_config: Optional[GroupDnsConfigArgs] = None,
dns_name_label: Optional[str] = None,
exposed_ports: Optional[Sequence[GroupExposedPortArgs]] = None,
fqdn: Optional[str] = None,
identity: Optional[GroupIdentityArgs] = None,
image_registry_credentials: Optional[Sequence[GroupImageRegistryCredentialArgs]] = None,
ip_address: Optional[str] = None,
ip_address_type: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
network_profile_id: Optional[str] = None,
os_type: Optional[str] = None,
resource_group_name: Optional[str] = None,
restart_policy: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Groupfunc GetGroup(ctx *Context, name string, id IDInput, state *GroupState, opts ...ResourceOption) (*Group, error)public static Group Get(string name, Input<string> id, GroupState? state, CustomResourceOptions? opts = null)public static Group get(String name, Output<String> id, GroupState state, CustomResourceOptions options)resources: _: type: azure:containerservice:Group 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.
- Containers
List<Group
Container> - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - Diagnostics
Group
Diagnostics - A
diagnosticsblock as documented below. - Dns
Config GroupDns Config - A
dns_configblock as documented below. - Dns
Name stringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- Exposed
Ports List<GroupExposed Port> - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - Fqdn string
- The FQDN of the container group derived from
dns_name_label. - Identity
Group
Identity - An
identityblock as defined below. - Image
Registry List<GroupCredentials Image Registry Credential> - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - Ip
Address string - The IP address allocated to the container group.
- Ip
Address stringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Network
Profile stringId - Network profile ID for deploying to virtual network.
- Os
Type string - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - Resource
Group stringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- Restart
Policy string - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Containers
[]Group
Container Args - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - Diagnostics
Group
Diagnostics Args - A
diagnosticsblock as documented below. - Dns
Config GroupDns Config Args - A
dns_configblock as documented below. - Dns
Name stringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- Exposed
Ports []GroupExposed Port Args - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - Fqdn string
- The FQDN of the container group derived from
dns_name_label. - Identity
Group
Identity Args - An
identityblock as defined below. - Image
Registry []GroupCredentials Image Registry Credential Args - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - Ip
Address string - The IP address allocated to the container group.
- Ip
Address stringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Network
Profile stringId - Network profile ID for deploying to virtual network.
- Os
Type string - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - Resource
Group stringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- Restart
Policy string - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - map[string]string
- A mapping of tags to assign to the resource.
- containers
List<Group
Container> - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - diagnostics
Group
Diagnostics - A
diagnosticsblock as documented below. - dns
Config GroupDns Config - A
dns_configblock as documented below. - dns
Name StringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed
Ports List<GroupExposed Port> - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - fqdn String
- The FQDN of the container group derived from
dns_name_label. - identity
Group
Identity - An
identityblock as defined below. - image
Registry List<GroupCredentials Image Registry Credential> - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip
Address String - The IP address allocated to the container group.
- ip
Address StringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network
Profile StringId - Network profile ID for deploying to virtual network.
- os
Type String - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource
Group StringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- restart
Policy String - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Map<String,String>
- A mapping of tags to assign to the resource.
- containers
Group
Container[] - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - diagnostics
Group
Diagnostics - A
diagnosticsblock as documented below. - dns
Config GroupDns Config - A
dns_configblock as documented below. - dns
Name stringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed
Ports GroupExposed Port[] - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - fqdn string
- The FQDN of the container group derived from
dns_name_label. - identity
Group
Identity - An
identityblock as defined below. - image
Registry GroupCredentials Image Registry Credential[] - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip
Address string - The IP address allocated to the container group.
- ip
Address stringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network
Profile stringId - Network profile ID for deploying to virtual network.
- os
Type string - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource
Group stringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- restart
Policy string - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- containers
Sequence[Group
Container Args] - The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - diagnostics
Group
Diagnostics Args - A
diagnosticsblock as documented below. - dns_
config GroupDns Config Args - A
dns_configblock as documented below. - dns_
name_ strlabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed_
ports Sequence[GroupExposed Port Args] - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - fqdn str
- The FQDN of the container group derived from
dns_name_label. - identity
Group
Identity Args - An
identityblock as defined below. - image_
registry_ Sequence[Groupcredentials Image Registry Credential Args] - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip_
address str - The IP address allocated to the container group.
- ip_
address_ strtype - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network_
profile_ strid - Network profile ID for deploying to virtual network.
- os_
type str - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource_
group_ strname - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- restart_
policy str - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- containers List<Property Map>
- The definition of a container that is part of the group as documented in the
containerblock below. Changing this forces a new resource to be created. - diagnostics Property Map
- A
diagnosticsblock as documented below. - dns
Config Property Map - A
dns_configblock as documented below. - dns
Name StringLabel - The DNS label/name for the container groups IP. Changing this forces a new resource to be created.
- exposed
Ports List<Property Map> - Zero or more
exposed_portblocks as defined below. Changing this forces a new resource to be created. - fqdn String
- The FQDN of the container group derived from
dns_name_label. - identity Property Map
- An
identityblock as defined below. - image
Registry List<Property Map>Credentials - A
image_registry_credentialblock as documented below. Changing this forces a new resource to be created. - ip
Address String - The IP address allocated to the container group.
- ip
Address StringType - Specifies the ip address type of the container.
Public,PrivateorNone. Changing this forces a new resource to be created. If set toPrivate,network_profile_idalso needs to be set. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- network
Profile StringId - Network profile ID for deploying to virtual network.
- os
Type String - The OS for the container group. Allowed values are
LinuxandWindows. Changing this forces a new resource to be created. - resource
Group StringName - The name of the resource group in which to create the Container Group. Changing this forces a new resource to be created.
- restart
Policy String - Restart policy for the container group. Allowed values are
Always,Never,OnFailure. Defaults toAlways. Changing this forces a new resource to be created. - Map<String>
- A mapping of tags to assign to the resource.
Supporting Types
GroupContainer, GroupContainerArgs
- Cpu double
- The required number of CPU cores of the containers. Changing this forces a new resource to be created.
- Image string
- The container image name. Changing this forces a new resource to be created.
- Memory double
- The required memory of the containers in GB. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Commands List<string>
- A list of commands which should be run on the container. Changing this forces a new resource to be created.
- Environment
Variables Dictionary<string, string> - A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- Gpu
Group
Container Gpu - A
gpublock as defined below. Changing this forces a new resource to be created. - Liveness
Probe GroupContainer Liveness Probe - The definition of a readiness probe for this container as documented in the
liveness_probeblock below. Changing this forces a new resource to be created. - Ports
List<Group
Container Port> - A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the
portsblock below. - Readiness
Probe GroupContainer Readiness Probe - The definition of a readiness probe for this container as documented in the
readiness_probeblock below. Changing this forces a new resource to be created. - Secure
Environment Dictionary<string, string>Variables - A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- Volumes
List<Group
Container Volume> - The definition of a volume mount for this container as documented in the
volumeblock below. Changing this forces a new resource to be created.
- Cpu float64
- The required number of CPU cores of the containers. Changing this forces a new resource to be created.
- Image string
- The container image name. Changing this forces a new resource to be created.
- Memory float64
- The required memory of the containers in GB. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Commands []string
- A list of commands which should be run on the container. Changing this forces a new resource to be created.
- Environment
Variables map[string]string - A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- Gpu
Group
Container Gpu - A
gpublock as defined below. Changing this forces a new resource to be created. - Liveness
Probe GroupContainer Liveness Probe - The definition of a readiness probe for this container as documented in the
liveness_probeblock below. Changing this forces a new resource to be created. - Ports
[]Group
Container Port - A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the
portsblock below. - Readiness
Probe GroupContainer Readiness Probe - The definition of a readiness probe for this container as documented in the
readiness_probeblock below. Changing this forces a new resource to be created. - Secure
Environment map[string]stringVariables - A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- Volumes
[]Group
Container Volume - The definition of a volume mount for this container as documented in the
volumeblock below. Changing this forces a new resource to be created.
- cpu Double
- The required number of CPU cores of the containers. Changing this forces a new resource to be created.
- image String
- The container image name. Changing this forces a new resource to be created.
- memory Double
- The required memory of the containers in GB. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- commands List<String>
- A list of commands which should be run on the container. Changing this forces a new resource to be created.
- environment
Variables Map<String,String> - A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- gpu
Group
Container Gpu - A
gpublock as defined below. Changing this forces a new resource to be created. - liveness
Probe GroupContainer Liveness Probe - The definition of a readiness probe for this container as documented in the
liveness_probeblock below. Changing this forces a new resource to be created. - ports
List<Group
Container Port> - A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the
portsblock below. - readiness
Probe GroupContainer Readiness Probe - The definition of a readiness probe for this container as documented in the
readiness_probeblock below. Changing this forces a new resource to be created. - secure
Environment Map<String,String>Variables - A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- volumes
List<Group
Container Volume> - The definition of a volume mount for this container as documented in the
volumeblock below. Changing this forces a new resource to be created.
- cpu number
- The required number of CPU cores of the containers. Changing this forces a new resource to be created.
- image string
- The container image name. Changing this forces a new resource to be created.
- memory number
- The required memory of the containers in GB. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- commands string[]
- A list of commands which should be run on the container. Changing this forces a new resource to be created.
- environment
Variables {[key: string]: string} - A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- gpu
Group
Container Gpu - A
gpublock as defined below. Changing this forces a new resource to be created. - liveness
Probe GroupContainer Liveness Probe - The definition of a readiness probe for this container as documented in the
liveness_probeblock below. Changing this forces a new resource to be created. - ports
Group
Container Port[] - A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the
portsblock below. - readiness
Probe GroupContainer Readiness Probe - The definition of a readiness probe for this container as documented in the
readiness_probeblock below. Changing this forces a new resource to be created. - secure
Environment {[key: string]: string}Variables - A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- volumes
Group
Container Volume[] - The definition of a volume mount for this container as documented in the
volumeblock below. Changing this forces a new resource to be created.
- cpu float
- The required number of CPU cores of the containers. Changing this forces a new resource to be created.
- image str
- The container image name. Changing this forces a new resource to be created.
- memory float
- The required memory of the containers in GB. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- commands Sequence[str]
- A list of commands which should be run on the container. Changing this forces a new resource to be created.
- environment_
variables Mapping[str, str] - A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- gpu
Group
Container Gpu - A
gpublock as defined below. Changing this forces a new resource to be created. - liveness_
probe GroupContainer Liveness Probe - The definition of a readiness probe for this container as documented in the
liveness_probeblock below. Changing this forces a new resource to be created. - ports
Sequence[Group
Container Port] - A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the
portsblock below. - readiness_
probe GroupContainer Readiness Probe - The definition of a readiness probe for this container as documented in the
readiness_probeblock below. Changing this forces a new resource to be created. - secure_
environment_ Mapping[str, str]variables - A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- volumes
Sequence[Group
Container Volume] - The definition of a volume mount for this container as documented in the
volumeblock below. Changing this forces a new resource to be created.
- cpu Number
- The required number of CPU cores of the containers. Changing this forces a new resource to be created.
- image String
- The container image name. Changing this forces a new resource to be created.
- memory Number
- The required memory of the containers in GB. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- commands List<String>
- A list of commands which should be run on the container. Changing this forces a new resource to be created.
- environment
Variables Map<String> - A list of environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- gpu Property Map
- A
gpublock as defined below. Changing this forces a new resource to be created. - liveness
Probe Property Map - The definition of a readiness probe for this container as documented in the
liveness_probeblock below. Changing this forces a new resource to be created. - ports List<Property Map>
- A set of public ports for the container. Changing this forces a new resource to be created. Set as documented in the
portsblock below. - readiness
Probe Property Map - The definition of a readiness probe for this container as documented in the
readiness_probeblock below. Changing this forces a new resource to be created. - secure
Environment Map<String>Variables - A list of sensitive environment variables to be set on the container. Specified as a map of name/value pairs. Changing this forces a new resource to be created.
- volumes List<Property Map>
- The definition of a volume mount for this container as documented in the
volumeblock below. Changing this forces a new resource to be created.
GroupContainerGpu, GroupContainerGpuArgs
GroupContainerLivenessProbe, GroupContainerLivenessProbeArgs
- Execs List<string>
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- Failure
Threshold int - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - Http
Gets List<GroupContainer Liveness Probe Http Get> - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - Initial
Delay intSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- Period
Seconds int - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - Success
Threshold int - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - Timeout
Seconds int - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- Execs []string
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- Failure
Threshold int - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - Http
Gets []GroupContainer Liveness Probe Http Get - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - Initial
Delay intSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- Period
Seconds int - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - Success
Threshold int - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - Timeout
Seconds int - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs List<String>
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure
Threshold Integer - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http
Gets List<GroupContainer Liveness Probe Http Get> - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial
Delay IntegerSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period
Seconds Integer - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success
Threshold Integer - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout
Seconds Integer - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs string[]
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure
Threshold number - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http
Gets GroupContainer Liveness Probe Http Get[] - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial
Delay numberSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period
Seconds number - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success
Threshold number - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout
Seconds number - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs Sequence[str]
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure_
threshold int - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http_
gets Sequence[GroupContainer Liveness Probe Http Get] - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial_
delay_ intseconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period_
seconds int - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success_
threshold int - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout_
seconds int - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs List<String>
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure
Threshold Number - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http
Gets List<Property Map> - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial
Delay NumberSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period
Seconds Number - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success
Threshold Number - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout
Seconds Number - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
GroupContainerLivenessProbeHttpGet, GroupContainerLivenessProbeHttpGetArgs
- Path string
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- Port int
- The port number the container will expose. Changing this forces a new resource to be created.
- Scheme string
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- Path string
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- Port int
- The port number the container will expose. Changing this forces a new resource to be created.
- Scheme string
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path String
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port Integer
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme String
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path string
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port number
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme string
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path str
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port int
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme str
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path String
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port Number
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme String
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
GroupContainerPort, GroupContainerPortArgs
GroupContainerReadinessProbe, GroupContainerReadinessProbeArgs
- Execs List<string>
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- Failure
Threshold int - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - Http
Gets List<GroupContainer Readiness Probe Http Get> - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - Initial
Delay intSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- Period
Seconds int - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - Success
Threshold int - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - Timeout
Seconds int - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- Execs []string
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- Failure
Threshold int - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - Http
Gets []GroupContainer Readiness Probe Http Get - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - Initial
Delay intSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- Period
Seconds int - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - Success
Threshold int - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - Timeout
Seconds int - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs List<String>
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure
Threshold Integer - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http
Gets List<GroupContainer Readiness Probe Http Get> - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial
Delay IntegerSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period
Seconds Integer - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success
Threshold Integer - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout
Seconds Integer - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs string[]
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure
Threshold number - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http
Gets GroupContainer Readiness Probe Http Get[] - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial
Delay numberSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period
Seconds number - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success
Threshold number - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout
Seconds number - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs Sequence[str]
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure_
threshold int - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http_
gets Sequence[GroupContainer Readiness Probe Http Get] - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial_
delay_ intseconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period_
seconds int - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success_
threshold int - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout_
seconds int - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
- execs List<String>
- Commands to be run to validate container readiness. Changing this forces a new resource to be created.
- failure
Threshold Number - How many times to try the probe before restarting the container (liveness probe) or marking the container as unhealthy (readiness probe). The default value is
3and the minimum value is1. Changing this forces a new resource to be created. - http
Gets List<Property Map> - The definition of the http_get for this container as documented in the
http_getblock below. Changing this forces a new resource to be created. - initial
Delay NumberSeconds - Number of seconds after the container has started before liveness or readiness probes are initiated. Changing this forces a new resource to be created.
- period
Seconds Number - How often (in seconds) to perform the probe. The default value is
10and the minimum value is1. Changing this forces a new resource to be created. - success
Threshold Number - Minimum consecutive successes for the probe to be considered successful after having failed. The default value is
1and the minimum value is1. Changing this forces a new resource to be created. - timeout
Seconds Number - Number of seconds after which the probe times out. The default value is
1and the minimum value is1. Changing this forces a new resource to be created.
GroupContainerReadinessProbeHttpGet, GroupContainerReadinessProbeHttpGetArgs
- Path string
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- Port int
- The port number the container will expose. Changing this forces a new resource to be created.
- Scheme string
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- Path string
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- Port int
- The port number the container will expose. Changing this forces a new resource to be created.
- Scheme string
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path String
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port Integer
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme String
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path string
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port number
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme string
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path str
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port int
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme str
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
- path String
- Path to access on the HTTP server. Changing this forces a new resource to be created.
- port Number
- The port number the container will expose. Changing this forces a new resource to be created.
- scheme String
- Scheme to use for connecting to the host. Possible values are
HttpandHttps. Changing this forces a new resource to be created.
GroupContainerVolume, GroupContainerVolumeArgs
- Mount
Path string - The path on which this volume is to be mounted. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Empty
Dir bool - Boolean as to whether the mounted volume should be an empty directory. Defaults to
false. Changing this forces a new resource to be created. - Git
Repo GroupContainer Volume Git Repo - A
git_repoblock as defined below. - Read
Only bool - Specify if the volume is to be mounted as read only or not. The default value is
false. Changing this forces a new resource to be created. - Secret Dictionary<string, string>
- A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.
- string
- The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.
- Storage
Account stringKey - The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.
- Storage
Account stringName - The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.
- Mount
Path string - The path on which this volume is to be mounted. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- Empty
Dir bool - Boolean as to whether the mounted volume should be an empty directory. Defaults to
false. Changing this forces a new resource to be created. - Git
Repo GroupContainer Volume Git Repo - A
git_repoblock as defined below. - Read
Only bool - Specify if the volume is to be mounted as read only or not. The default value is
false. Changing this forces a new resource to be created. - Secret map[string]string
- A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.
- string
- The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.
- Storage
Account stringKey - The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.
- Storage
Account stringName - The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.
- mount
Path String - The path on which this volume is to be mounted. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- empty
Dir Boolean - Boolean as to whether the mounted volume should be an empty directory. Defaults to
false. Changing this forces a new resource to be created. - git
Repo GroupContainer Volume Git Repo - A
git_repoblock as defined below. - read
Only Boolean - Specify if the volume is to be mounted as read only or not. The default value is
false. Changing this forces a new resource to be created. - secret Map<String,String>
- A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.
- String
- The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.
- storage
Account StringKey - The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.
- storage
Account StringName - The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.
- mount
Path string - The path on which this volume is to be mounted. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- empty
Dir boolean - Boolean as to whether the mounted volume should be an empty directory. Defaults to
false. Changing this forces a new resource to be created. - git
Repo GroupContainer Volume Git Repo - A
git_repoblock as defined below. - read
Only boolean - Specify if the volume is to be mounted as read only or not. The default value is
false. Changing this forces a new resource to be created. - secret {[key: string]: string}
- A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.
- string
- The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.
- storage
Account stringKey - The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.
- storage
Account stringName - The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.
- mount_
path str - The path on which this volume is to be mounted. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- empty_
dir bool - Boolean as to whether the mounted volume should be an empty directory. Defaults to
false. Changing this forces a new resource to be created. - git_
repo GroupContainer Volume Git Repo - A
git_repoblock as defined below. - read_
only bool - Specify if the volume is to be mounted as read only or not. The default value is
false. Changing this forces a new resource to be created. - secret Mapping[str, str]
- A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.
- str
- The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.
- storage_
account_ strkey - The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.
- storage_
account_ strname - The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.
- mount
Path String - The path on which this volume is to be mounted. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Container Group. Changing this forces a new resource to be created.
- empty
Dir Boolean - Boolean as to whether the mounted volume should be an empty directory. Defaults to
false. Changing this forces a new resource to be created. - git
Repo Property Map - A
git_repoblock as defined below. - read
Only Boolean - Specify if the volume is to be mounted as read only or not. The default value is
false. Changing this forces a new resource to be created. - secret Map<String>
- A map of secrets that will be mounted as files in the volume. Changing this forces a new resource to be created.
- String
- The Azure storage share that is to be mounted as a volume. This must be created on the storage account specified as above. Changing this forces a new resource to be created.
- storage
Account StringKey - The access key for the Azure Storage account specified as above. Changing this forces a new resource to be created.
- storage
Account StringName - The Azure storage account from which the volume is to be mounted. Changing this forces a new resource to be created.
GroupContainerVolumeGitRepo, GroupContainerVolumeGitRepoArgs
- Url string
- Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
- Directory string
- Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
- Revision string
- Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
- Url string
- Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
- Directory string
- Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
- Revision string
- Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
- url String
- Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
- directory String
- Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
- revision String
- Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
- url string
- Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
- directory string
- Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
- revision string
- Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
- url str
- Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
- directory str
- Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
- revision str
- Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
- url String
- Specifies the Git repository to be cloned. Changing this forces a new resource to be created.
- directory String
- Specifies the directory into which the repository should be cloned. Changing this forces a new resource to be created.
- revision String
- Specifies the commit hash of the revision to be cloned. If unspecified, the HEAD revision is cloned. Changing this forces a new resource to be created.
GroupDiagnostics, GroupDiagnosticsArgs
- Log
Analytics GroupDiagnostics Log Analytics - A
log_analyticsblock as defined below. Changing this forces a new resource to be created.
- Log
Analytics GroupDiagnostics Log Analytics - A
log_analyticsblock as defined below. Changing this forces a new resource to be created.
- log
Analytics GroupDiagnostics Log Analytics - A
log_analyticsblock as defined below. Changing this forces a new resource to be created.
- log
Analytics GroupDiagnostics Log Analytics - A
log_analyticsblock as defined below. Changing this forces a new resource to be created.
- log_
analytics GroupDiagnostics Log Analytics - A
log_analyticsblock as defined below. Changing this forces a new resource to be created.
- log
Analytics Property Map - A
log_analyticsblock as defined below. Changing this forces a new resource to be created.
GroupDiagnosticsLogAnalytics, GroupDiagnosticsLogAnalyticsArgs
- Workspace
Id string - The Workspace ID of the Log Analytics Workspace. Changing this forces a new resource to be created.
- Workspace
Key string - The Workspace Key of the Log Analytics Workspace. Changing this forces a new resource to be created.
- Log
Type string - The log type which should be used. Possible values are
ContainerInsightsandContainerInstanceLogs. Changing this forces a new resource to be created. - Metadata Dictionary<string, string>
- Any metadata required for Log Analytics. Changing this forces a new resource to be created.
- Workspace
Id string - The Workspace ID of the Log Analytics Workspace. Changing this forces a new resource to be created.
- Workspace
Key string - The Workspace Key of the Log Analytics Workspace. Changing this forces a new resource to be created.
- Log
Type string - The log type which should be used. Possible values are
ContainerInsightsandContainerInstanceLogs. Changing this forces a new resource to be created. - Metadata map[string]string
- Any metadata required for Log Analytics. Changing this forces a new resource to be created.
- workspace
Id String - The Workspace ID of the Log Analytics Workspace. Changing this forces a new resource to be created.
- workspace
Key String - The Workspace Key of the Log Analytics Workspace. Changing this forces a new resource to be created.
- log
Type String - The log type which should be used. Possible values are
ContainerInsightsandContainerInstanceLogs. Changing this forces a new resource to be created. - metadata Map<String,String>
- Any metadata required for Log Analytics. Changing this forces a new resource to be created.
- workspace
Id string - The Workspace ID of the Log Analytics Workspace. Changing this forces a new resource to be created.
- workspace
Key string - The Workspace Key of the Log Analytics Workspace. Changing this forces a new resource to be created.
- log
Type string - The log type which should be used. Possible values are
ContainerInsightsandContainerInstanceLogs. Changing this forces a new resource to be created. - metadata {[key: string]: string}
- Any metadata required for Log Analytics. Changing this forces a new resource to be created.
- workspace_
id str - The Workspace ID of the Log Analytics Workspace. Changing this forces a new resource to be created.
- workspace_
key str - The Workspace Key of the Log Analytics Workspace. Changing this forces a new resource to be created.
- log_
type str - The log type which should be used. Possible values are
ContainerInsightsandContainerInstanceLogs. Changing this forces a new resource to be created. - metadata Mapping[str, str]
- Any metadata required for Log Analytics. Changing this forces a new resource to be created.
- workspace
Id String - The Workspace ID of the Log Analytics Workspace. Changing this forces a new resource to be created.
- workspace
Key String - The Workspace Key of the Log Analytics Workspace. Changing this forces a new resource to be created.
- log
Type String - The log type which should be used. Possible values are
ContainerInsightsandContainerInstanceLogs. Changing this forces a new resource to be created. - metadata Map<String>
- Any metadata required for Log Analytics. Changing this forces a new resource to be created.
GroupDnsConfig, GroupDnsConfigArgs
- Nameservers List<string>
- A list of nameservers the containers will search out to resolve requests.
- Options List<string>
- A list of resolver configuration options.
- Search
Domains List<string> - A list of search domains that DNS requests will search along.
- Nameservers []string
- A list of nameservers the containers will search out to resolve requests.
- Options []string
- A list of resolver configuration options.
- Search
Domains []string - A list of search domains that DNS requests will search along.
- nameservers List<String>
- A list of nameservers the containers will search out to resolve requests.
- options List<String>
- A list of resolver configuration options.
- search
Domains List<String> - A list of search domains that DNS requests will search along.
- nameservers string[]
- A list of nameservers the containers will search out to resolve requests.
- options string[]
- A list of resolver configuration options.
- search
Domains string[] - A list of search domains that DNS requests will search along.
- nameservers Sequence[str]
- A list of nameservers the containers will search out to resolve requests.
- options Sequence[str]
- A list of resolver configuration options.
- search_
domains Sequence[str] - A list of search domains that DNS requests will search along.
- nameservers List<String>
- A list of nameservers the containers will search out to resolve requests.
- options List<String>
- A list of resolver configuration options.
- search
Domains List<String> - A list of search domains that DNS requests will search along.
GroupExposedPort, GroupExposedPortArgs
GroupIdentity, GroupIdentityArgs
- Type string
- The Managed Service Identity Type of this container group. Possible values are
SystemAssigned(where Azure will generate a Service Principal for you),UserAssignedwhere you can specify the Service Principal IDs in theidentity_idsfield, andSystemAssigned, UserAssignedwhich assigns both a system managed identity as well as the specified user assigned identities. Changing this forces a new resource to be created. - Identity
Ids List<string> - Specifies a list of user managed identity ids to be assigned. Required if
typeisUserAssigned. Changing this forces a new resource to be created. - Principal
Id string - Tenant
Id string
- Type string
- The Managed Service Identity Type of this container group. Possible values are
SystemAssigned(where Azure will generate a Service Principal for you),UserAssignedwhere you can specify the Service Principal IDs in theidentity_idsfield, andSystemAssigned, UserAssignedwhich assigns both a system managed identity as well as the specified user assigned identities. Changing this forces a new resource to be created. - Identity
Ids []string - Specifies a list of user managed identity ids to be assigned. Required if
typeisUserAssigned. Changing this forces a new resource to be created. - Principal
Id string - Tenant
Id string
- type String
- The Managed Service Identity Type of this container group. Possible values are
SystemAssigned(where Azure will generate a Service Principal for you),UserAssignedwhere you can specify the Service Principal IDs in theidentity_idsfield, andSystemAssigned, UserAssignedwhich assigns both a system managed identity as well as the specified user assigned identities. Changing this forces a new resource to be created. - identity
Ids List<String> - Specifies a list of user managed identity ids to be assigned. Required if
typeisUserAssigned. Changing this forces a new resource to be created. - principal
Id String - tenant
Id String
- type string
- The Managed Service Identity Type of this container group. Possible values are
SystemAssigned(where Azure will generate a Service Principal for you),UserAssignedwhere you can specify the Service Principal IDs in theidentity_idsfield, andSystemAssigned, UserAssignedwhich assigns both a system managed identity as well as the specified user assigned identities. Changing this forces a new resource to be created. - identity
Ids string[] - Specifies a list of user managed identity ids to be assigned. Required if
typeisUserAssigned. Changing this forces a new resource to be created. - principal
Id string - tenant
Id string
- type str
- The Managed Service Identity Type of this container group. Possible values are
SystemAssigned(where Azure will generate a Service Principal for you),UserAssignedwhere you can specify the Service Principal IDs in theidentity_idsfield, andSystemAssigned, UserAssignedwhich assigns both a system managed identity as well as the specified user assigned identities. Changing this forces a new resource to be created. - identity_
ids Sequence[str] - Specifies a list of user managed identity ids to be assigned. Required if
typeisUserAssigned. Changing this forces a new resource to be created. - principal_
id str - tenant_
id str
- type String
- The Managed Service Identity Type of this container group. Possible values are
SystemAssigned(where Azure will generate a Service Principal for you),UserAssignedwhere you can specify the Service Principal IDs in theidentity_idsfield, andSystemAssigned, UserAssignedwhich assigns both a system managed identity as well as the specified user assigned identities. Changing this forces a new resource to be created. - identity
Ids List<String> - Specifies a list of user managed identity ids to be assigned. Required if
typeisUserAssigned. Changing this forces a new resource to be created. - principal
Id String - tenant
Id String
GroupImageRegistryCredential, GroupImageRegistryCredentialArgs
- Password string
- The password with which to connect to the registry. Changing this forces a new resource to be created.
- Server string
- The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
- Username string
- The username with which to connect to the registry. Changing this forces a new resource to be created.
- Password string
- The password with which to connect to the registry. Changing this forces a new resource to be created.
- Server string
- The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
- Username string
- The username with which to connect to the registry. Changing this forces a new resource to be created.
- password String
- The password with which to connect to the registry. Changing this forces a new resource to be created.
- server String
- The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
- username String
- The username with which to connect to the registry. Changing this forces a new resource to be created.
- password string
- The password with which to connect to the registry. Changing this forces a new resource to be created.
- server string
- The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
- username string
- The username with which to connect to the registry. Changing this forces a new resource to be created.
- password str
- The password with which to connect to the registry. Changing this forces a new resource to be created.
- server str
- The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
- username str
- The username with which to connect to the registry. Changing this forces a new resource to be created.
- password String
- The password with which to connect to the registry. Changing this forces a new resource to be created.
- server String
- The address to use to connect to the registry without protocol ("https"/"http"). For example: "myacr.acr.io". Changing this forces a new resource to be created.
- username String
- The username with which to connect to the registry. Changing this forces a new resource to be created.
Import
Container Group’s can be imported using the resource id, e.g.
$ pulumi import azure:containerservice/group:Group containerGroup1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.ContainerInstance/containerGroups/myContainerGroup1
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
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
