azure-native.app.ContainerApp
Explore with Pulumi AI
Container App. API Version: 2022-03-01.
Example Usage
Create or Update Container App
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var containerApp = new AzureNative.App.ContainerApp("containerApp", new()
{
Configuration = new AzureNative.App.Inputs.ConfigurationArgs
{
Dapr = new AzureNative.App.Inputs.DaprArgs
{
AppPort = 3000,
AppProtocol = "http",
Enabled = true,
},
Ingress = new AzureNative.App.Inputs.IngressArgs
{
CustomDomains = new[]
{
new AzureNative.App.Inputs.CustomDomainArgs
{
BindingType = "SniEnabled",
CertificateId = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-name-dot-com",
Name = "www.my-name.com",
},
new AzureNative.App.Inputs.CustomDomainArgs
{
BindingType = "SniEnabled",
CertificateId = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-other-name-dot-com",
Name = "www.my-other-name.com",
},
},
External = true,
TargetPort = 3000,
Traffic = new[]
{
new AzureNative.App.Inputs.TrafficWeightArgs
{
Label = "production",
RevisionName = "testcontainerApp0-ab1234",
Weight = 100,
},
},
},
},
ContainerAppName = "testcontainerApp0",
Location = "East US",
ManagedEnvironmentId = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube",
ResourceGroupName = "rg",
Template = new AzureNative.App.Inputs.TemplateArgs
{
Containers = new[]
{
new AzureNative.App.Inputs.ContainerArgs
{
Image = "repo/testcontainerApp0:v1",
Name = "testcontainerApp0",
Probes = new[]
{
new AzureNative.App.Inputs.ContainerAppProbeArgs
{
HttpGet = new AzureNative.App.Inputs.ContainerAppProbeHttpGetArgs
{
HttpHeaders = new[]
{
new AzureNative.App.Inputs.ContainerAppProbeHttpHeadersArgs
{
Name = "Custom-Header",
Value = "Awesome",
},
},
Path = "/health",
Port = 8080,
},
InitialDelaySeconds = 3,
PeriodSeconds = 3,
Type = "Liveness",
},
},
},
},
Scale = new AzureNative.App.Inputs.ScaleArgs
{
MaxReplicas = 5,
MinReplicas = 1,
Rules = new[]
{
new AzureNative.App.Inputs.ScaleRuleArgs
{
Custom = new AzureNative.App.Inputs.CustomScaleRuleArgs
{
Metadata =
{
{ "concurrentRequests", "50" },
},
Type = "http",
},
Name = "httpscalingrule",
},
},
},
},
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.app.ContainerApp;
import com.pulumi.azurenative.app.ContainerAppArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var containerApp = new ContainerApp("containerApp", ContainerAppArgs.builder()
.configuration(Map.ofEntries(
Map.entry("dapr", Map.ofEntries(
Map.entry("appPort", 3000),
Map.entry("appProtocol", "http"),
Map.entry("enabled", true)
)),
Map.entry("ingress", Map.ofEntries(
Map.entry("customDomains",
Map.ofEntries(
Map.entry("bindingType", "SniEnabled"),
Map.entry("certificateId", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-name-dot-com"),
Map.entry("name", "www.my-name.com")
),
Map.ofEntries(
Map.entry("bindingType", "SniEnabled"),
Map.entry("certificateId", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-other-name-dot-com"),
Map.entry("name", "www.my-other-name.com")
)),
Map.entry("external", true),
Map.entry("targetPort", 3000),
Map.entry("traffic", Map.ofEntries(
Map.entry("label", "production"),
Map.entry("revisionName", "testcontainerApp0-ab1234"),
Map.entry("weight", 100)
))
))
))
.containerAppName("testcontainerApp0")
.location("East US")
.managedEnvironmentId("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube")
.resourceGroupName("rg")
.template(Map.ofEntries(
Map.entry("containers", Map.ofEntries(
Map.entry("image", "repo/testcontainerApp0:v1"),
Map.entry("name", "testcontainerApp0"),
Map.entry("probes", Map.ofEntries(
Map.entry("httpGet", Map.ofEntries(
Map.entry("httpHeaders", Map.ofEntries(
Map.entry("name", "Custom-Header"),
Map.entry("value", "Awesome")
)),
Map.entry("path", "/health"),
Map.entry("port", 8080)
)),
Map.entry("initialDelaySeconds", 3),
Map.entry("periodSeconds", 3),
Map.entry("type", "Liveness")
))
)),
Map.entry("scale", Map.ofEntries(
Map.entry("maxReplicas", 5),
Map.entry("minReplicas", 1),
Map.entry("rules", Map.ofEntries(
Map.entry("custom", Map.ofEntries(
Map.entry("metadata", Map.of("concurrentRequests", "50")),
Map.entry("type", "http")
)),
Map.entry("name", "httpscalingrule")
))
))
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
container_app = azure_native.app.ContainerApp("containerApp",
configuration=azure_native.app.ConfigurationResponseArgs(
dapr=azure_native.app.DaprArgs(
app_port=3000,
app_protocol="http",
enabled=True,
),
ingress={
"customDomains": [
azure_native.app.CustomDomainArgs(
binding_type="SniEnabled",
certificate_id="/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-name-dot-com",
name="www.my-name.com",
),
azure_native.app.CustomDomainArgs(
binding_type="SniEnabled",
certificate_id="/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-other-name-dot-com",
name="www.my-other-name.com",
),
],
"external": True,
"targetPort": 3000,
"traffic": [azure_native.app.TrafficWeightArgs(
label="production",
revision_name="testcontainerApp0-ab1234",
weight=100,
)],
},
),
container_app_name="testcontainerApp0",
location="East US",
managed_environment_id="/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube",
resource_group_name="rg",
template=azure_native.app.TemplateResponseArgs(
containers=[{
"image": "repo/testcontainerApp0:v1",
"name": "testcontainerApp0",
"probes": [{
"httpGet": {
"httpHeaders": [azure_native.app.ContainerAppProbeHttpHeadersArgs(
name="Custom-Header",
value="Awesome",
)],
"path": "/health",
"port": 8080,
},
"initialDelaySeconds": 3,
"periodSeconds": 3,
"type": "Liveness",
}],
}],
scale={
"maxReplicas": 5,
"minReplicas": 1,
"rules": [{
"custom": azure_native.app.CustomScaleRuleArgs(
metadata={
"concurrentRequests": "50",
},
type="http",
),
"name": "httpscalingrule",
}],
},
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const containerApp = new azure_native.app.ContainerApp("containerApp", {
configuration: {
dapr: {
appPort: 3000,
appProtocol: "http",
enabled: true,
},
ingress: {
customDomains: [
{
bindingType: "SniEnabled",
certificateId: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-name-dot-com",
name: "www.my-name.com",
},
{
bindingType: "SniEnabled",
certificateId: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-other-name-dot-com",
name: "www.my-other-name.com",
},
],
external: true,
targetPort: 3000,
traffic: [{
label: "production",
revisionName: "testcontainerApp0-ab1234",
weight: 100,
}],
},
},
containerAppName: "testcontainerApp0",
location: "East US",
managedEnvironmentId: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube",
resourceGroupName: "rg",
template: {
containers: [{
image: "repo/testcontainerApp0:v1",
name: "testcontainerApp0",
probes: [{
httpGet: {
httpHeaders: [{
name: "Custom-Header",
value: "Awesome",
}],
path: "/health",
port: 8080,
},
initialDelaySeconds: 3,
periodSeconds: 3,
type: "Liveness",
}],
}],
scale: {
maxReplicas: 5,
minReplicas: 1,
rules: [{
custom: {
metadata: {
concurrentRequests: "50",
},
type: "http",
},
name: "httpscalingrule",
}],
},
},
});
resources:
containerApp:
type: azure-native:app:ContainerApp
properties:
configuration:
dapr:
appPort: 3000
appProtocol: http
enabled: true
ingress:
customDomains:
- bindingType: SniEnabled
certificateId: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-name-dot-com
name: www.my-name.com
- bindingType: SniEnabled
certificateId: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube/certificates/my-certificate-for-my-other-name-dot-com
name: www.my-other-name.com
external: true
targetPort: 3000
traffic:
- label: production
revisionName: testcontainerApp0-ab1234
weight: 100
containerAppName: testcontainerApp0
location: East US
managedEnvironmentId: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/managedEnvironments/demokube
resourceGroupName: rg
template:
containers:
- image: repo/testcontainerApp0:v1
name: testcontainerApp0
probes:
- httpGet:
httpHeaders:
- name: Custom-Header
value: Awesome
path: /health
port: 8080
initialDelaySeconds: 3
periodSeconds: 3
type: Liveness
scale:
maxReplicas: 5
minReplicas: 1
rules:
- custom:
metadata:
concurrentRequests: '50'
type: http
name: httpscalingrule
Create ContainerApp Resource
new ContainerApp(name: string, args: ContainerAppArgs, opts?: CustomResourceOptions);
@overload
def ContainerApp(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[ConfigurationArgs] = None,
container_app_name: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
location: Optional[str] = None,
managed_environment_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
template: Optional[TemplateArgs] = None)
@overload
def ContainerApp(resource_name: str,
args: ContainerAppArgs,
opts: Optional[ResourceOptions] = None)
func NewContainerApp(ctx *Context, name string, args ContainerAppArgs, opts ...ResourceOption) (*ContainerApp, error)
public ContainerApp(string name, ContainerAppArgs args, CustomResourceOptions? opts = null)
public ContainerApp(String name, ContainerAppArgs args)
public ContainerApp(String name, ContainerAppArgs args, CustomResourceOptions options)
type: azure-native:app:ContainerApp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContainerAppArgs
- 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 ContainerAppArgs
- 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 ContainerAppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContainerAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContainerAppArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ContainerApp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ContainerApp resource accepts the following input properties:
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- Configuration
Pulumi.
Azure Native. App. Inputs. Configuration Args Non versioned Container App configuration properties.
- Container
App stringName Name of the Container App.
- Identity
Pulumi.
Azure Native. App. Inputs. Managed Service Identity Args managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code.
- Location string
The geo-location where the resource lives
- Managed
Environment stringId Resource ID of the Container App's environment.
- Dictionary<string, string>
Resource tags.
- Template
Pulumi.
Azure Native. App. Inputs. Template Args Container App versioned application definition.
- Resource
Group stringName The name of the resource group. The name is case insensitive.
- Configuration
Configuration
Args Non versioned Container App configuration properties.
- Container
App stringName Name of the Container App.
- Identity
Managed
Service Identity Args managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code.
- Location string
The geo-location where the resource lives
- Managed
Environment stringId Resource ID of the Container App's environment.
- map[string]string
Resource tags.
- Template
Template
Args Container App versioned application definition.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- configuration
Configuration
Args Non versioned Container App configuration properties.
- container
App StringName Name of the Container App.
- identity
Managed
Service Identity Args managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code.
- location String
The geo-location where the resource lives
- managed
Environment StringId Resource ID of the Container App's environment.
- Map<String,String>
Resource tags.
- template
Template
Args Container App versioned application definition.
- resource
Group stringName The name of the resource group. The name is case insensitive.
- configuration
Configuration
Args Non versioned Container App configuration properties.
- container
App stringName Name of the Container App.
- identity
Managed
Service Identity Args managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code.
- location string
The geo-location where the resource lives
- managed
Environment stringId Resource ID of the Container App's environment.
- {[key: string]: string}
Resource tags.
- template
Template
Args Container App versioned application definition.
- resource_
group_ strname The name of the resource group. The name is case insensitive.
- configuration
Configuration
Args Non versioned Container App configuration properties.
- container_
app_ strname Name of the Container App.
- identity
Managed
Service Identity Args managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code.
- location str
The geo-location where the resource lives
- managed_
environment_ strid Resource ID of the Container App's environment.
- Mapping[str, str]
Resource tags.
- template
Template
Args Container App versioned application definition.
- resource
Group StringName The name of the resource group. The name is case insensitive.
- configuration Property Map
Non versioned Container App configuration properties.
- container
App StringName Name of the Container App.
- identity Property Map
managed identities for the Container App to interact with other Azure services without maintaining any secrets or credentials in code.
- location String
The geo-location where the resource lives
- managed
Environment StringId Resource ID of the Container App's environment.
- Map<String>
Resource tags.
- template Property Map
Container App versioned application definition.
Outputs
All input properties are implicitly available as output properties. Additionally, the ContainerApp resource produces the following output properties:
- Custom
Domain stringVerification Id Id used to verify domain name ownership
- Id string
The provider-assigned unique ID for this managed resource.
- Latest
Revision stringFqdn Fully Qualified Domain Name of the latest revision of the Container App.
- Latest
Revision stringName Name of the latest revision of the Container App.
- Name string
The name of the resource
- Outbound
Ip List<string>Addresses Outbound IP Addresses for container app.
- Provisioning
State string Provisioning state of the Container App.
- System
Data Pulumi.Azure Native. App. Outputs. System Data Response Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Custom
Domain stringVerification Id Id used to verify domain name ownership
- Id string
The provider-assigned unique ID for this managed resource.
- Latest
Revision stringFqdn Fully Qualified Domain Name of the latest revision of the Container App.
- Latest
Revision stringName Name of the latest revision of the Container App.
- Name string
The name of the resource
- Outbound
Ip []stringAddresses Outbound IP Addresses for container app.
- Provisioning
State string Provisioning state of the Container App.
- System
Data SystemData Response Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- custom
Domain StringVerification Id Id used to verify domain name ownership
- id String
The provider-assigned unique ID for this managed resource.
- latest
Revision StringFqdn Fully Qualified Domain Name of the latest revision of the Container App.
- latest
Revision StringName Name of the latest revision of the Container App.
- name String
The name of the resource
- outbound
Ip List<String>Addresses Outbound IP Addresses for container app.
- provisioning
State String Provisioning state of the Container App.
- system
Data SystemData Response Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- custom
Domain stringVerification Id Id used to verify domain name ownership
- id string
The provider-assigned unique ID for this managed resource.
- latest
Revision stringFqdn Fully Qualified Domain Name of the latest revision of the Container App.
- latest
Revision stringName Name of the latest revision of the Container App.
- name string
The name of the resource
- outbound
Ip string[]Addresses Outbound IP Addresses for container app.
- provisioning
State string Provisioning state of the Container App.
- system
Data SystemData Response Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- custom_
domain_ strverification_ id Id used to verify domain name ownership
- id str
The provider-assigned unique ID for this managed resource.
- latest_
revision_ strfqdn Fully Qualified Domain Name of the latest revision of the Container App.
- latest_
revision_ strname Name of the latest revision of the Container App.
- name str
The name of the resource
- outbound_
ip_ Sequence[str]addresses Outbound IP Addresses for container app.
- provisioning_
state str Provisioning state of the Container App.
- system_
data SystemData Response Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- custom
Domain StringVerification Id Id used to verify domain name ownership
- id String
The provider-assigned unique ID for this managed resource.
- latest
Revision StringFqdn Fully Qualified Domain Name of the latest revision of the Container App.
- latest
Revision StringName Name of the latest revision of the Container App.
- name String
The name of the resource
- outbound
Ip List<String>Addresses Outbound IP Addresses for container app.
- provisioning
State String Provisioning state of the Container App.
- system
Data Property Map Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ActiveRevisionsMode
- Multiple
- Multiple
- Single
- Single
- Active
Revisions Mode Multiple - Multiple
- Active
Revisions Mode Single - Single
- Multiple
- Multiple
- Single
- Single
- Multiple
- Multiple
- Single
- Single
- MULTIPLE
- Multiple
- SINGLE
- Single
- "Multiple"
- Multiple
- "Single"
- Single
AppProtocol
- Http
- http
- Grpc
- grpc
- App
Protocol Http - http
- App
Protocol Grpc - grpc
- Http
- http
- Grpc
- grpc
- Http
- http
- Grpc
- grpc
- HTTP
- http
- GRPC
- grpc
- "http"
- http
- "grpc"
- grpc
BindingType
- Disabled
- Disabled
- Sni
Enabled - SniEnabled
- Binding
Type Disabled - Disabled
- Binding
Type Sni Enabled - SniEnabled
- Disabled
- Disabled
- Sni
Enabled - SniEnabled
- Disabled
- Disabled
- Sni
Enabled - SniEnabled
- DISABLED
- Disabled
- SNI_ENABLED
- SniEnabled
- "Disabled"
- Disabled
- "Sni
Enabled" - SniEnabled
Configuration
- Active
Revisions string | Pulumi.Mode Azure Native. App. Active Revisions Mode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- Dapr
Pulumi.
Azure Native. App. Inputs. Dapr Dapr configuration for the Container App.
- Ingress
Pulumi.
Azure Native. App. Inputs. Ingress Ingress configurations.
- Registries
List<Pulumi.
Azure Native. App. Inputs. Registry Credentials> Collection of private container registry credentials for containers used by the Container app
- Secrets
List<Pulumi.
Azure Native. App. Inputs. Secret> Collection of secrets used by a Container app
- Active
Revisions string | ActiveMode Revisions Mode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- Dapr Dapr
Dapr configuration for the Container App.
- Ingress Ingress
Ingress configurations.
- Registries
[]Registry
Credentials Collection of private container registry credentials for containers used by the Container app
- Secrets []Secret
Collection of secrets used by a Container app
- active
Revisions String | ActiveMode Revisions Mode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr Dapr
Dapr configuration for the Container App.
- ingress Ingress
Ingress configurations.
- registries
List<Registry
Credentials> Collection of private container registry credentials for containers used by the Container app
- secrets List<Secret>
Collection of secrets used by a Container app
- active
Revisions string | ActiveMode Revisions Mode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr Dapr
Dapr configuration for the Container App.
- ingress Ingress
Ingress configurations.
- registries
Registry
Credentials[] Collection of private container registry credentials for containers used by the Container app
- secrets Secret[]
Collection of secrets used by a Container app
- active_
revisions_ str | Activemode Revisions Mode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr Dapr
Dapr configuration for the Container App.
- ingress Ingress
Ingress configurations.
- registries
Sequence[Registry
Credentials] Collection of private container registry credentials for containers used by the Container app
- secrets Sequence[Secret]
Collection of secrets used by a Container app
- active
Revisions String | "Multiple" | "Single"Mode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr Property Map
Dapr configuration for the Container App.
- ingress Property Map
Ingress configurations.
- registries List<Property Map>
Collection of private container registry credentials for containers used by the Container app
- secrets List<Property Map>
Collection of secrets used by a Container app
ConfigurationResponse
- Active
Revisions stringMode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- Dapr
Pulumi.
Azure Native. App. Inputs. Dapr Response Dapr configuration for the Container App.
- Ingress
Pulumi.
Azure Native. App. Inputs. Ingress Response Ingress configurations.
- Registries
List<Pulumi.
Azure Native. App. Inputs. Registry Credentials Response> Collection of private container registry credentials for containers used by the Container app
- Secrets
List<Pulumi.
Azure Native. App. Inputs. Secret Response> Collection of secrets used by a Container app
- Active
Revisions stringMode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- Dapr
Dapr
Response Dapr configuration for the Container App.
- Ingress
Ingress
Response Ingress configurations.
- Registries
[]Registry
Credentials Response Collection of private container registry credentials for containers used by the Container app
- Secrets
[]Secret
Response Collection of secrets used by a Container app
- active
Revisions StringMode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr
Dapr
Response Dapr configuration for the Container App.
- ingress
Ingress
Response Ingress configurations.
- registries
List<Registry
Credentials Response> Collection of private container registry credentials for containers used by the Container app
- secrets
List<Secret
Response> Collection of secrets used by a Container app
- active
Revisions stringMode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr
Dapr
Response Dapr configuration for the Container App.
- ingress
Ingress
Response Ingress configurations.
- registries
Registry
Credentials Response[] Collection of private container registry credentials for containers used by the Container app
- secrets
Secret
Response[] Collection of secrets used by a Container app
- active_
revisions_ strmode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr
Dapr
Response Dapr configuration for the Container App.
- ingress
Ingress
Response Ingress configurations.
- registries
Sequence[Registry
Credentials Response] Collection of private container registry credentials for containers used by the Container app
- secrets
Sequence[Secret
Response] Collection of secrets used by a Container app
- active
Revisions StringMode ActiveRevisionsMode controls how active revisions are handled for the Container app: Multiple: multiple revisions can be active.Single: Only one revision can be active at a time. Revision weights can not be used in this mode. If no value if provided, this is the default.
- dapr Property Map
Dapr configuration for the Container App.
- ingress Property Map
Ingress configurations.
- registries List<Property Map>
Collection of private container registry credentials for containers used by the Container app
- secrets List<Property Map>
Collection of secrets used by a Container app
Container
- Args List<string>
Container start command arguments.
- Command List<string>
Container start command.
- Env
List<Pulumi.
Azure Native. App. Inputs. Environment Var> Container environment variables.
- Image string
Container image tag.
- Name string
Custom container name.
- Probes
List<Pulumi.
Azure Native. App. Inputs. Container App Probe> List of probes for the container.
- Resources
Pulumi.
Azure Native. App. Inputs. Container Resources Container resource requirements.
- Volume
Mounts List<Pulumi.Azure Native. App. Inputs. Volume Mount> Container volume mounts.
- Args []string
Container start command arguments.
- Command []string
Container start command.
- Env
[]Environment
Var Container environment variables.
- Image string
Container image tag.
- Name string
Custom container name.
- Probes
[]Container
App Probe List of probes for the container.
- Resources
Container
Resources Container resource requirements.
- Volume
Mounts []VolumeMount Container volume mounts.
- args List<String>
Container start command arguments.
- command List<String>
Container start command.
- env
List<Environment
Var> Container environment variables.
- image String
Container image tag.
- name String
Custom container name.
- probes
List<Container
App Probe> List of probes for the container.
- resources
Container
Resources Container resource requirements.
- volume
Mounts List<VolumeMount> Container volume mounts.
- args string[]
Container start command arguments.
- command string[]
Container start command.
- env
Environment
Var[] Container environment variables.
- image string
Container image tag.
- name string
Custom container name.
- probes
Container
App Probe[] List of probes for the container.
- resources
Container
Resources Container resource requirements.
- volume
Mounts VolumeMount[] Container volume mounts.
- args Sequence[str]
Container start command arguments.
- command Sequence[str]
Container start command.
- env
Sequence[Environment
Var] Container environment variables.
- image str
Container image tag.
- name str
Custom container name.
- probes
Sequence[Container
App Probe] List of probes for the container.
- resources
Container
Resources Container resource requirements.
- volume_
mounts Sequence[VolumeMount] Container volume mounts.
- args List<String>
Container start command arguments.
- command List<String>
Container start command.
- env List<Property Map>
Container environment variables.
- image String
Container image tag.
- name String
Custom container name.
- probes List<Property Map>
List of probes for the container.
- resources Property Map
Container resource requirements.
- volume
Mounts List<Property Map> Container volume mounts.
ContainerAppProbe
- Failure
Threshold int Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- Http
Get Pulumi.Azure Native. App. Inputs. Container App Probe Http Get HTTPGet specifies the http request to perform.
- Initial
Delay intSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- Period
Seconds int How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- Success
Threshold int Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- Tcp
Socket Pulumi.Azure Native. App. Inputs. Container App Probe Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- Termination
Grace doublePeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- Timeout
Seconds int Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- Type
string | Pulumi.
Azure Native. App. Type The type of probe.
- Failure
Threshold int Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- Http
Get ContainerApp Probe Http Get HTTPGet specifies the http request to perform.
- Initial
Delay intSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- Period
Seconds int How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- Success
Threshold int Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- Tcp
Socket ContainerApp Probe Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- Termination
Grace float64Period Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- Timeout
Seconds int Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- Type string | Type
The type of probe.
- failure
Threshold Integer Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http
Get ContainerApp Probe Http Get HTTPGet specifies the http request to perform.
- initial
Delay IntegerSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period
Seconds Integer How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success
Threshold Integer Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp
Socket ContainerApp Probe Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination
Grace DoublePeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout
Seconds Integer Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type String | Type
The type of probe.
- failure
Threshold number Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http
Get ContainerApp Probe Http Get HTTPGet specifies the http request to perform.
- initial
Delay numberSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period
Seconds number How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success
Threshold number Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp
Socket ContainerApp Probe Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination
Grace numberPeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout
Seconds number Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type string | Type
The type of probe.
- failure_
threshold int Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http_
get ContainerApp Probe Http Get HTTPGet specifies the http request to perform.
- initial_
delay_ intseconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period_
seconds int How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success_
threshold int Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp_
socket ContainerApp Probe Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination_
grace_ floatperiod_ seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout_
seconds int Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type str | Type
The type of probe.
- failure
Threshold Number Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http
Get Property Map HTTPGet specifies the http request to perform.
- initial
Delay NumberSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period
Seconds Number How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success
Threshold Number Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp
Socket Property Map TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination
Grace NumberPeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout
Seconds Number Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type String | "Liveness" | "Readiness" | "Startup"
The type of probe.
ContainerAppProbeHttpGet
- Port int
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- Host string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- Http
Headers List<Pulumi.Azure Native. App. Inputs. Container App Probe Http Headers> Custom headers to set in the request. HTTP allows repeated headers.
- Path string
Path to access on the HTTP server.
- Scheme
string | Pulumi.
Azure Native. App. Scheme Scheme to use for connecting to the host. Defaults to HTTP.
- Port int
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- Host string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- Http
Headers []ContainerApp Probe Http Headers Custom headers to set in the request. HTTP allows repeated headers.
- Path string
Path to access on the HTTP server.
- Scheme string | Scheme
Scheme to use for connecting to the host. Defaults to HTTP.
- port Integer
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host String
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http
Headers List<ContainerApp Probe Http Headers> Custom headers to set in the request. HTTP allows repeated headers.
- path String
Path to access on the HTTP server.
- scheme String | Scheme
Scheme to use for connecting to the host. Defaults to HTTP.
- port number
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http
Headers ContainerApp Probe Http Headers[] Custom headers to set in the request. HTTP allows repeated headers.
- path string
Path to access on the HTTP server.
- scheme string | Scheme
Scheme to use for connecting to the host. Defaults to HTTP.
- port int
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host str
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http_
headers Sequence[ContainerApp Probe Http Headers] Custom headers to set in the request. HTTP allows repeated headers.
- path str
Path to access on the HTTP server.
- scheme str | Scheme
Scheme to use for connecting to the host. Defaults to HTTP.
- port Number
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host String
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http
Headers List<Property Map> Custom headers to set in the request. HTTP allows repeated headers.
- path String
Path to access on the HTTP server.
- scheme String | "HTTP" | "HTTPS"
Scheme to use for connecting to the host. Defaults to HTTP.
ContainerAppProbeHttpHeaders
ContainerAppProbeResponse
- Failure
Threshold int Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- Http
Get Pulumi.Azure Native. App. Inputs. Container App Probe Response Http Get HTTPGet specifies the http request to perform.
- Initial
Delay intSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- Period
Seconds int How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- Success
Threshold int Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- Tcp
Socket Pulumi.Azure Native. App. Inputs. Container App Probe Response Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- Termination
Grace doublePeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- Timeout
Seconds int Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- Type string
The type of probe.
- Failure
Threshold int Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- Http
Get ContainerApp Probe Response Http Get HTTPGet specifies the http request to perform.
- Initial
Delay intSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- Period
Seconds int How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- Success
Threshold int Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- Tcp
Socket ContainerApp Probe Response Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- Termination
Grace float64Period Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- Timeout
Seconds int Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- Type string
The type of probe.
- failure
Threshold Integer Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http
Get ContainerApp Probe Response Http Get HTTPGet specifies the http request to perform.
- initial
Delay IntegerSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period
Seconds Integer How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success
Threshold Integer Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp
Socket ContainerApp Probe Response Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination
Grace DoublePeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout
Seconds Integer Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type String
The type of probe.
- failure
Threshold number Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http
Get ContainerApp Probe Response Http Get HTTPGet specifies the http request to perform.
- initial
Delay numberSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period
Seconds number How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success
Threshold number Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp
Socket ContainerApp Probe Response Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination
Grace numberPeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout
Seconds number Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type string
The type of probe.
- failure_
threshold int Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http_
get ContainerApp Probe Response Http Get HTTPGet specifies the http request to perform.
- initial_
delay_ intseconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period_
seconds int How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success_
threshold int Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp_
socket ContainerApp Probe Response Tcp Socket TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination_
grace_ floatperiod_ seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout_
seconds int Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type str
The type of probe.
- failure
Threshold Number Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. Maximum value is 10.
- http
Get Property Map HTTPGet specifies the http request to perform.
- initial
Delay NumberSeconds Number of seconds after the container has started before liveness probes are initiated. Minimum value is 1. Maximum value is 60.
- period
Seconds Number How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Maximum value is 240.
- success
Threshold Number Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. Maximum value is 10.
- tcp
Socket Property Map TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported.
- termination
Grace NumberPeriod Seconds Optional duration in seconds the pod needs to terminate gracefully upon probe failure. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this value overrides the value provided by the pod spec. Value must be non-negative integer. The value zero indicates stop immediately via the kill signal (no opportunity to shut down). This is an alpha field and requires enabling ProbeTerminationGracePeriod feature gate. Maximum value is 3600 seconds (1 hour)
- timeout
Seconds Number Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Maximum value is 240.
- type String
The type of probe.
ContainerAppProbeResponseHttpGet
- Port int
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- Host string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- Http
Headers List<Pulumi.Azure Native. App. Inputs. Container App Probe Response Http Headers> Custom headers to set in the request. HTTP allows repeated headers.
- Path string
Path to access on the HTTP server.
- Scheme string
Scheme to use for connecting to the host. Defaults to HTTP.
- Port int
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- Host string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- Http
Headers []ContainerApp Probe Response Http Headers Custom headers to set in the request. HTTP allows repeated headers.
- Path string
Path to access on the HTTP server.
- Scheme string
Scheme to use for connecting to the host. Defaults to HTTP.
- port Integer
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host String
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http
Headers List<ContainerApp Probe Response Http Headers> Custom headers to set in the request. HTTP allows repeated headers.
- path String
Path to access on the HTTP server.
- scheme String
Scheme to use for connecting to the host. Defaults to HTTP.
- port number
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http
Headers ContainerApp Probe Response Http Headers[] Custom headers to set in the request. HTTP allows repeated headers.
- path string
Path to access on the HTTP server.
- scheme string
Scheme to use for connecting to the host. Defaults to HTTP.
- port int
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host str
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http_
headers Sequence[ContainerApp Probe Response Http Headers] Custom headers to set in the request. HTTP allows repeated headers.
- path str
Path to access on the HTTP server.
- scheme str
Scheme to use for connecting to the host. Defaults to HTTP.
- port Number
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.
- host String
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.
- http
Headers List<Property Map> Custom headers to set in the request. HTTP allows repeated headers.
- path String
Path to access on the HTTP server.
- scheme String
Scheme to use for connecting to the host. Defaults to HTTP.
ContainerAppProbeResponseHttpHeaders
ContainerAppProbeResponseTcpSocket
ContainerAppProbeTcpSocket
ContainerResources
ContainerResourcesResponse
- Ephemeral
Storage string Ephemeral Storage, e.g. "1Gi"
- Cpu double
Required CPU in cores, e.g. 0.5
- Memory string
Required memory, e.g. "250Mb"
- Ephemeral
Storage string Ephemeral Storage, e.g. "1Gi"
- Cpu float64
Required CPU in cores, e.g. 0.5
- Memory string
Required memory, e.g. "250Mb"
- ephemeral
Storage String Ephemeral Storage, e.g. "1Gi"
- cpu Double
Required CPU in cores, e.g. 0.5
- memory String
Required memory, e.g. "250Mb"
- ephemeral
Storage string Ephemeral Storage, e.g. "1Gi"
- cpu number
Required CPU in cores, e.g. 0.5
- memory string
Required memory, e.g. "250Mb"
- ephemeral_
storage str Ephemeral Storage, e.g. "1Gi"
- cpu float
Required CPU in cores, e.g. 0.5
- memory str
Required memory, e.g. "250Mb"
- ephemeral
Storage String Ephemeral Storage, e.g. "1Gi"
- cpu Number
Required CPU in cores, e.g. 0.5
- memory String
Required memory, e.g. "250Mb"
ContainerResponse
- Args List<string>
Container start command arguments.
- Command List<string>
Container start command.
- Env
List<Pulumi.
Azure Native. App. Inputs. Environment Var Response> Container environment variables.
- Image string
Container image tag.
- Name string
Custom container name.
- Probes
List<Pulumi.
Azure Native. App. Inputs. Container App Probe Response> List of probes for the container.
- Resources
Pulumi.
Azure Native. App. Inputs. Container Resources Response Container resource requirements.
- Volume
Mounts List<Pulumi.Azure Native. App. Inputs. Volume Mount Response> Container volume mounts.
- Args []string
Container start command arguments.
- Command []string
Container start command.
- Env
[]Environment
Var Response Container environment variables.
- Image string
Container image tag.
- Name string
Custom container name.
- Probes
[]Container
App Probe Response List of probes for the container.
- Resources
Container
Resources Response Container resource requirements.
- Volume
Mounts []VolumeMount Response Container volume mounts.
- args List<String>
Container start command arguments.
- command List<String>
Container start command.
- env
List<Environment
Var Response> Container environment variables.
- image String
Container image tag.
- name String
Custom container name.
- probes
List<Container
App Probe Response> List of probes for the container.
- resources
Container
Resources Response Container resource requirements.
- volume
Mounts List<VolumeMount Response> Container volume mounts.
- args string[]
Container start command arguments.
- command string[]
Container start command.
- env
Environment
Var Response[] Container environment variables.
- image string
Container image tag.
- name string
Custom container name.
- probes
Container
App Probe Response[] List of probes for the container.
- resources
Container
Resources Response Container resource requirements.
- volume
Mounts VolumeMount Response[] Container volume mounts.
- args Sequence[str]
Container start command arguments.
- command Sequence[str]
Container start command.
- env
Sequence[Environment
Var Response] Container environment variables.
- image str
Container image tag.
- name str
Custom container name.
- probes
Sequence[Container
App Probe Response] List of probes for the container.
- resources
Container
Resources Response Container resource requirements.
- volume_
mounts Sequence[VolumeMount Response] Container volume mounts.
- args List<String>
Container start command arguments.
- command List<String>
Container start command.
- env List<Property Map>
Container environment variables.
- image String
Container image tag.
- name String
Custom container name.
- probes List<Property Map>
List of probes for the container.
- resources Property Map
Container resource requirements.
- volume
Mounts List<Property Map> Container volume mounts.
CustomDomain
- Name string
Hostname.
- Binding
Type string | Pulumi.Azure Native. App. Binding Type Custom Domain binding type.
- Certificate
Id string Resource Id of the Certificate to be bound to this hostname.
- Name string
Hostname.
- Binding
Type string | BindingType Custom Domain binding type.
- Certificate
Id string Resource Id of the Certificate to be bound to this hostname.
- name String
Hostname.
- binding
Type String | BindingType Custom Domain binding type.
- certificate
Id String Resource Id of the Certificate to be bound to this hostname.
- name string
Hostname.
- binding
Type string | BindingType Custom Domain binding type.
- certificate
Id string Resource Id of the Certificate to be bound to this hostname.
- name str
Hostname.
- binding_
type str | BindingType Custom Domain binding type.
- certificate_
id str Resource Id of the Certificate to be bound to this hostname.
- name String
Hostname.
- binding
Type String | "Disabled" | "SniEnabled" Custom Domain binding type.
- certificate
Id String Resource Id of the Certificate to be bound to this hostname.
CustomDomainResponse
- Name string
Hostname.
- Binding
Type string Custom Domain binding type.
- Certificate
Id string Resource Id of the Certificate to be bound to this hostname.
- Name string
Hostname.
- Binding
Type string Custom Domain binding type.
- Certificate
Id string Resource Id of the Certificate to be bound to this hostname.
- name String
Hostname.
- binding
Type String Custom Domain binding type.
- certificate
Id String Resource Id of the Certificate to be bound to this hostname.
- name string
Hostname.
- binding
Type string Custom Domain binding type.
- certificate
Id string Resource Id of the Certificate to be bound to this hostname.
- name str
Hostname.
- binding_
type str Custom Domain binding type.
- certificate_
id str Resource Id of the Certificate to be bound to this hostname.
- name String
Hostname.
- binding
Type String Custom Domain binding type.
- certificate
Id String Resource Id of the Certificate to be bound to this hostname.
CustomScaleRule
- Auth
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Auth> Authentication secrets for the custom scale rule.
- Metadata Dictionary<string, string>
Metadata properties to describe custom scale rule.
- Type string
Type of the custom scale rule eg: azure-servicebus, redis etc.
- Auth
[]Scale
Rule Auth Authentication secrets for the custom scale rule.
- Metadata map[string]string
Metadata properties to describe custom scale rule.
- Type string
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth
List<Scale
Rule Auth> Authentication secrets for the custom scale rule.
- metadata Map<String,String>
Metadata properties to describe custom scale rule.
- type String
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth
Scale
Rule Auth[] Authentication secrets for the custom scale rule.
- metadata {[key: string]: string}
Metadata properties to describe custom scale rule.
- type string
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth
Sequence[Scale
Rule Auth] Authentication secrets for the custom scale rule.
- metadata Mapping[str, str]
Metadata properties to describe custom scale rule.
- type str
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth List<Property Map>
Authentication secrets for the custom scale rule.
- metadata Map<String>
Metadata properties to describe custom scale rule.
- type String
Type of the custom scale rule eg: azure-servicebus, redis etc.
CustomScaleRuleResponse
- Auth
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Auth Response> Authentication secrets for the custom scale rule.
- Metadata Dictionary<string, string>
Metadata properties to describe custom scale rule.
- Type string
Type of the custom scale rule eg: azure-servicebus, redis etc.
- Auth
[]Scale
Rule Auth Response Authentication secrets for the custom scale rule.
- Metadata map[string]string
Metadata properties to describe custom scale rule.
- Type string
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth
List<Scale
Rule Auth Response> Authentication secrets for the custom scale rule.
- metadata Map<String,String>
Metadata properties to describe custom scale rule.
- type String
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth
Scale
Rule Auth Response[] Authentication secrets for the custom scale rule.
- metadata {[key: string]: string}
Metadata properties to describe custom scale rule.
- type string
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth
Sequence[Scale
Rule Auth Response] Authentication secrets for the custom scale rule.
- metadata Mapping[str, str]
Metadata properties to describe custom scale rule.
- type str
Type of the custom scale rule eg: azure-servicebus, redis etc.
- auth List<Property Map>
Authentication secrets for the custom scale rule.
- metadata Map<String>
Metadata properties to describe custom scale rule.
- type String
Type of the custom scale rule eg: azure-servicebus, redis etc.
Dapr
- App
Id string Dapr application identifier
- App
Port int Tells Dapr which port your application is listening on
- App
Protocol string | Pulumi.Azure Native. App. App Protocol Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- Enabled bool
Boolean indicating if the Dapr side car is enabled
- App
Id string Dapr application identifier
- App
Port int Tells Dapr which port your application is listening on
- App
Protocol string | AppProtocol Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- Enabled bool
Boolean indicating if the Dapr side car is enabled
- app
Id String Dapr application identifier
- app
Port Integer Tells Dapr which port your application is listening on
- app
Protocol String | AppProtocol Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled Boolean
Boolean indicating if the Dapr side car is enabled
- app
Id string Dapr application identifier
- app
Port number Tells Dapr which port your application is listening on
- app
Protocol string | AppProtocol Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled boolean
Boolean indicating if the Dapr side car is enabled
- app_
id str Dapr application identifier
- app_
port int Tells Dapr which port your application is listening on
- app_
protocol str | AppProtocol Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled bool
Boolean indicating if the Dapr side car is enabled
- app
Id String Dapr application identifier
- app
Port Number Tells Dapr which port your application is listening on
- app
Protocol String | "http" | "grpc" Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled Boolean
Boolean indicating if the Dapr side car is enabled
DaprResponse
- App
Id string Dapr application identifier
- App
Port int Tells Dapr which port your application is listening on
- App
Protocol string Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- Enabled bool
Boolean indicating if the Dapr side car is enabled
- App
Id string Dapr application identifier
- App
Port int Tells Dapr which port your application is listening on
- App
Protocol string Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- Enabled bool
Boolean indicating if the Dapr side car is enabled
- app
Id String Dapr application identifier
- app
Port Integer Tells Dapr which port your application is listening on
- app
Protocol String Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled Boolean
Boolean indicating if the Dapr side car is enabled
- app
Id string Dapr application identifier
- app
Port number Tells Dapr which port your application is listening on
- app
Protocol string Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled boolean
Boolean indicating if the Dapr side car is enabled
- app_
id str Dapr application identifier
- app_
port int Tells Dapr which port your application is listening on
- app_
protocol str Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled bool
Boolean indicating if the Dapr side car is enabled
- app
Id String Dapr application identifier
- app
Port Number Tells Dapr which port your application is listening on
- app
Protocol String Tells Dapr which protocol your application is using. Valid options are http and grpc. Default is http
- enabled Boolean
Boolean indicating if the Dapr side car is enabled
EnvironmentVar
- name str
Environment variable name.
- secret_
ref str Name of the Container App secret from which to pull the environment variable value.
- value str
Non-secret environment variable value.
EnvironmentVarResponse
- name str
Environment variable name.
- secret_
ref str Name of the Container App secret from which to pull the environment variable value.
- value str
Non-secret environment variable value.
HttpScaleRule
- Auth
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Auth> Authentication secrets for the custom scale rule.
- Metadata Dictionary<string, string>
Metadata properties to describe http scale rule.
- Auth
[]Scale
Rule Auth Authentication secrets for the custom scale rule.
- Metadata map[string]string
Metadata properties to describe http scale rule.
- auth
List<Scale
Rule Auth> Authentication secrets for the custom scale rule.
- metadata Map<String,String>
Metadata properties to describe http scale rule.
- auth
Scale
Rule Auth[] Authentication secrets for the custom scale rule.
- metadata {[key: string]: string}
Metadata properties to describe http scale rule.
- auth
Sequence[Scale
Rule Auth] Authentication secrets for the custom scale rule.
- metadata Mapping[str, str]
Metadata properties to describe http scale rule.
- auth List<Property Map>
Authentication secrets for the custom scale rule.
- metadata Map<String>
Metadata properties to describe http scale rule.
HttpScaleRuleResponse
- Auth
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Auth Response> Authentication secrets for the custom scale rule.
- Metadata Dictionary<string, string>
Metadata properties to describe http scale rule.
- Auth
[]Scale
Rule Auth Response Authentication secrets for the custom scale rule.
- Metadata map[string]string
Metadata properties to describe http scale rule.
- auth
List<Scale
Rule Auth Response> Authentication secrets for the custom scale rule.
- metadata Map<String,String>
Metadata properties to describe http scale rule.
- auth
Scale
Rule Auth Response[] Authentication secrets for the custom scale rule.
- metadata {[key: string]: string}
Metadata properties to describe http scale rule.
- auth
Sequence[Scale
Rule Auth Response] Authentication secrets for the custom scale rule.
- metadata Mapping[str, str]
Metadata properties to describe http scale rule.
- auth List<Property Map>
Authentication secrets for the custom scale rule.
- metadata Map<String>
Metadata properties to describe http scale rule.
Ingress
- Allow
Insecure bool Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- Custom
Domains List<Pulumi.Azure Native. App. Inputs. Custom Domain> custom domain bindings for Container Apps' hostnames.
- External bool
Bool indicating if app exposes an external http endpoint
- Target
Port int Target Port in containers for traffic from ingress
- Traffic
List<Pulumi.
Azure Native. App. Inputs. Traffic Weight> Traffic weights for app's revisions
- Transport
string | Pulumi.
Azure Native. App. Ingress Transport Method Ingress transport protocol
- Allow
Insecure bool Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- Custom
Domains []CustomDomain custom domain bindings for Container Apps' hostnames.
- External bool
Bool indicating if app exposes an external http endpoint
- Target
Port int Target Port in containers for traffic from ingress
- Traffic
[]Traffic
Weight Traffic weights for app's revisions
- Transport
string | Ingress
Transport Method Ingress transport protocol
- allow
Insecure Boolean Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom
Domains List<CustomDomain> custom domain bindings for Container Apps' hostnames.
- external Boolean
Bool indicating if app exposes an external http endpoint
- target
Port Integer Target Port in containers for traffic from ingress
- traffic
List<Traffic
Weight> Traffic weights for app's revisions
- transport
String | Ingress
Transport Method Ingress transport protocol
- allow
Insecure boolean Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom
Domains CustomDomain[] custom domain bindings for Container Apps' hostnames.
- external boolean
Bool indicating if app exposes an external http endpoint
- target
Port number Target Port in containers for traffic from ingress
- traffic
Traffic
Weight[] Traffic weights for app's revisions
- transport
string | Ingress
Transport Method Ingress transport protocol
- allow_
insecure bool Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom_
domains Sequence[CustomDomain] custom domain bindings for Container Apps' hostnames.
- external bool
Bool indicating if app exposes an external http endpoint
- target_
port int Target Port in containers for traffic from ingress
- traffic
Sequence[Traffic
Weight] Traffic weights for app's revisions
- transport
str | Ingress
Transport Method Ingress transport protocol
- allow
Insecure Boolean Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom
Domains List<Property Map> custom domain bindings for Container Apps' hostnames.
- external Boolean
Bool indicating if app exposes an external http endpoint
- target
Port Number Target Port in containers for traffic from ingress
- traffic List<Property Map>
Traffic weights for app's revisions
- transport String | "auto" | "http" | "http2"
Ingress transport protocol
IngressResponse
- Fqdn string
Hostname.
- Allow
Insecure bool Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- Custom
Domains List<Pulumi.Azure Native. App. Inputs. Custom Domain Response> custom domain bindings for Container Apps' hostnames.
- External bool
Bool indicating if app exposes an external http endpoint
- Target
Port int Target Port in containers for traffic from ingress
- Traffic
List<Pulumi.
Azure Native. App. Inputs. Traffic Weight Response> Traffic weights for app's revisions
- Transport string
Ingress transport protocol
- Fqdn string
Hostname.
- Allow
Insecure bool Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- Custom
Domains []CustomDomain Response custom domain bindings for Container Apps' hostnames.
- External bool
Bool indicating if app exposes an external http endpoint
- Target
Port int Target Port in containers for traffic from ingress
- Traffic
[]Traffic
Weight Response Traffic weights for app's revisions
- Transport string
Ingress transport protocol
- fqdn String
Hostname.
- allow
Insecure Boolean Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom
Domains List<CustomDomain Response> custom domain bindings for Container Apps' hostnames.
- external Boolean
Bool indicating if app exposes an external http endpoint
- target
Port Integer Target Port in containers for traffic from ingress
- traffic
List<Traffic
Weight Response> Traffic weights for app's revisions
- transport String
Ingress transport protocol
- fqdn string
Hostname.
- allow
Insecure boolean Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom
Domains CustomDomain Response[] custom domain bindings for Container Apps' hostnames.
- external boolean
Bool indicating if app exposes an external http endpoint
- target
Port number Target Port in containers for traffic from ingress
- traffic
Traffic
Weight Response[] Traffic weights for app's revisions
- transport string
Ingress transport protocol
- fqdn str
Hostname.
- allow_
insecure bool Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom_
domains Sequence[CustomDomain Response] custom domain bindings for Container Apps' hostnames.
- external bool
Bool indicating if app exposes an external http endpoint
- target_
port int Target Port in containers for traffic from ingress
- traffic
Sequence[Traffic
Weight Response] Traffic weights for app's revisions
- transport str
Ingress transport protocol
- fqdn String
Hostname.
- allow
Insecure Boolean Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections
- custom
Domains List<Property Map> custom domain bindings for Container Apps' hostnames.
- external Boolean
Bool indicating if app exposes an external http endpoint
- target
Port Number Target Port in containers for traffic from ingress
- traffic List<Property Map>
Traffic weights for app's revisions
- transport String
Ingress transport protocol
IngressTransportMethod
- Auto
- auto
- Http
- http
- Http2
- http2
- Ingress
Transport Method Auto - auto
- Ingress
Transport Method Http - http
- Ingress
Transport Method Http2 - http2
- Auto
- auto
- Http
- http
- Http2
- http2
- Auto
- auto
- Http
- http
- Http2
- http2
- AUTO
- auto
- HTTP
- http
- HTTP2
- http2
- "auto"
- auto
- "http"
- http
- "http2"
- http2
ManagedServiceIdentity
- Type
string | Pulumi.
Azure Native. App. Managed Service Identity Type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, object>Identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]interface{}Identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,Object>Identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: any}Identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Any]identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Any>Identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse
- Principal
Id string The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. App. Inputs. User Assigned Identity Response> The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
QueueScaleRule
- Auth
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Auth> Authentication secrets for the queue scale rule.
- Queue
Length int Queue length.
- Queue
Name string Queue name.
- Auth
[]Scale
Rule Auth Authentication secrets for the queue scale rule.
- Queue
Length int Queue length.
- Queue
Name string Queue name.
- auth
List<Scale
Rule Auth> Authentication secrets for the queue scale rule.
- queue
Length Integer Queue length.
- queue
Name String Queue name.
- auth
Scale
Rule Auth[] Authentication secrets for the queue scale rule.
- queue
Length number Queue length.
- queue
Name string Queue name.
- auth
Sequence[Scale
Rule Auth] Authentication secrets for the queue scale rule.
- queue_
length int Queue length.
- queue_
name str Queue name.
- auth List<Property Map>
Authentication secrets for the queue scale rule.
- queue
Length Number Queue length.
- queue
Name String Queue name.
QueueScaleRuleResponse
- Auth
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Auth Response> Authentication secrets for the queue scale rule.
- Queue
Length int Queue length.
- Queue
Name string Queue name.
- Auth
[]Scale
Rule Auth Response Authentication secrets for the queue scale rule.
- Queue
Length int Queue length.
- Queue
Name string Queue name.
- auth
List<Scale
Rule Auth Response> Authentication secrets for the queue scale rule.
- queue
Length Integer Queue length.
- queue
Name String Queue name.
- auth
Scale
Rule Auth Response[] Authentication secrets for the queue scale rule.
- queue
Length number Queue length.
- queue
Name string Queue name.
- auth
Sequence[Scale
Rule Auth Response] Authentication secrets for the queue scale rule.
- queue_
length int Queue length.
- queue_
name str Queue name.
- auth List<Property Map>
Authentication secrets for the queue scale rule.
- queue
Length Number Queue length.
- queue
Name String Queue name.
RegistryCredentials
- Identity string
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- Password
Secret stringRef The name of the Secret that contains the registry login password
- Server string
Container Registry Server
- Username string
Container Registry Username
- Identity string
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- Password
Secret stringRef The name of the Secret that contains the registry login password
- Server string
Container Registry Server
- Username string
Container Registry Username
- identity String
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password
Secret StringRef The name of the Secret that contains the registry login password
- server String
Container Registry Server
- username String
Container Registry Username
- identity string
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password
Secret stringRef The name of the Secret that contains the registry login password
- server string
Container Registry Server
- username string
Container Registry Username
- identity str
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password_
secret_ strref The name of the Secret that contains the registry login password
- server str
Container Registry Server
- username str
Container Registry Username
- identity String
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password
Secret StringRef The name of the Secret that contains the registry login password
- server String
Container Registry Server
- username String
Container Registry Username
RegistryCredentialsResponse
- Identity string
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- Password
Secret stringRef The name of the Secret that contains the registry login password
- Server string
Container Registry Server
- Username string
Container Registry Username
- Identity string
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- Password
Secret stringRef The name of the Secret that contains the registry login password
- Server string
Container Registry Server
- Username string
Container Registry Username
- identity String
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password
Secret StringRef The name of the Secret that contains the registry login password
- server String
Container Registry Server
- username String
Container Registry Username
- identity string
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password
Secret stringRef The name of the Secret that contains the registry login password
- server string
Container Registry Server
- username string
Container Registry Username
- identity str
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password_
secret_ strref The name of the Secret that contains the registry login password
- server str
Container Registry Server
- username str
Container Registry Username
- identity String
A Managed Identity to use to authenticate with Azure Container Registry. For user-assigned identities, use the full user-assigned identity Resource ID. For system-assigned identities, use 'system'
- password
Secret StringRef The name of the Secret that contains the registry login password
- server String
Container Registry Server
- username String
Container Registry Username
Scale
- Max
Replicas int Optional. Maximum number of container replicas. Defaults to 10 if not set.
- Min
Replicas int Optional. Minimum number of container replicas.
- Rules
List<Pulumi.
Azure Native. App. Inputs. Scale Rule> Scaling rules.
- Max
Replicas int Optional. Maximum number of container replicas. Defaults to 10 if not set.
- Min
Replicas int Optional. Minimum number of container replicas.
- Rules
[]Scale
Rule Scaling rules.
- max
Replicas Integer Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min
Replicas Integer Optional. Minimum number of container replicas.
- rules
List<Scale
Rule> Scaling rules.
- max
Replicas number Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min
Replicas number Optional. Minimum number of container replicas.
- rules
Scale
Rule[] Scaling rules.
- max_
replicas int Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min_
replicas int Optional. Minimum number of container replicas.
- rules
Sequence[Scale
Rule] Scaling rules.
- max
Replicas Number Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min
Replicas Number Optional. Minimum number of container replicas.
- rules List<Property Map>
Scaling rules.
ScaleResponse
- Max
Replicas int Optional. Maximum number of container replicas. Defaults to 10 if not set.
- Min
Replicas int Optional. Minimum number of container replicas.
- Rules
List<Pulumi.
Azure Native. App. Inputs. Scale Rule Response> Scaling rules.
- Max
Replicas int Optional. Maximum number of container replicas. Defaults to 10 if not set.
- Min
Replicas int Optional. Minimum number of container replicas.
- Rules
[]Scale
Rule Response Scaling rules.
- max
Replicas Integer Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min
Replicas Integer Optional. Minimum number of container replicas.
- rules
List<Scale
Rule Response> Scaling rules.
- max
Replicas number Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min
Replicas number Optional. Minimum number of container replicas.
- rules
Scale
Rule Response[] Scaling rules.
- max_
replicas int Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min_
replicas int Optional. Minimum number of container replicas.
- rules
Sequence[Scale
Rule Response] Scaling rules.
- max
Replicas Number Optional. Maximum number of container replicas. Defaults to 10 if not set.
- min
Replicas Number Optional. Minimum number of container replicas.
- rules List<Property Map>
Scaling rules.
ScaleRule
- Azure
Queue Pulumi.Azure Native. App. Inputs. Queue Scale Rule Azure Queue based scaling.
- Custom
Pulumi.
Azure Native. App. Inputs. Custom Scale Rule Custom scale rule.
- Http
Pulumi.
Azure Native. App. Inputs. Http Scale Rule HTTP requests based scaling.
- Name string
Scale Rule Name
- Azure
Queue QueueScale Rule Azure Queue based scaling.
- Custom
Custom
Scale Rule Custom scale rule.
- Http
Http
Scale Rule HTTP requests based scaling.
- Name string
Scale Rule Name
- azure
Queue QueueScale Rule Azure Queue based scaling.
- custom
Custom
Scale Rule Custom scale rule.
- http
Http
Scale Rule HTTP requests based scaling.
- name String
Scale Rule Name
- azure
Queue QueueScale Rule Azure Queue based scaling.
- custom
Custom
Scale Rule Custom scale rule.
- http
Http
Scale Rule HTTP requests based scaling.
- name string
Scale Rule Name
- azure_
queue QueueScale Rule Azure Queue based scaling.
- custom
Custom
Scale Rule Custom scale rule.
- http
Http
Scale Rule HTTP requests based scaling.
- name str
Scale Rule Name
- azure
Queue Property Map Azure Queue based scaling.
- custom Property Map
Custom scale rule.
- http Property Map
HTTP requests based scaling.
- name String
Scale Rule Name
ScaleRuleAuth
- Secret
Ref string Name of the Container App secret from which to pull the auth params.
- Trigger
Parameter string Trigger Parameter that uses the secret
- Secret
Ref string Name of the Container App secret from which to pull the auth params.
- Trigger
Parameter string Trigger Parameter that uses the secret
- secret
Ref String Name of the Container App secret from which to pull the auth params.
- trigger
Parameter String Trigger Parameter that uses the secret
- secret
Ref string Name of the Container App secret from which to pull the auth params.
- trigger
Parameter string Trigger Parameter that uses the secret
- secret_
ref str Name of the Container App secret from which to pull the auth params.
- trigger_
parameter str Trigger Parameter that uses the secret
- secret
Ref String Name of the Container App secret from which to pull the auth params.
- trigger
Parameter String Trigger Parameter that uses the secret
ScaleRuleAuthResponse
- Secret
Ref string Name of the Container App secret from which to pull the auth params.
- Trigger
Parameter string Trigger Parameter that uses the secret
- Secret
Ref string Name of the Container App secret from which to pull the auth params.
- Trigger
Parameter string Trigger Parameter that uses the secret
- secret
Ref String Name of the Container App secret from which to pull the auth params.
- trigger
Parameter String Trigger Parameter that uses the secret
- secret
Ref string Name of the Container App secret from which to pull the auth params.
- trigger
Parameter string Trigger Parameter that uses the secret
- secret_
ref str Name of the Container App secret from which to pull the auth params.
- trigger_
parameter str Trigger Parameter that uses the secret
- secret
Ref String Name of the Container App secret from which to pull the auth params.
- trigger
Parameter String Trigger Parameter that uses the secret
ScaleRuleResponse
- Azure
Queue Pulumi.Azure Native. App. Inputs. Queue Scale Rule Response Azure Queue based scaling.
- Custom
Pulumi.
Azure Native. App. Inputs. Custom Scale Rule Response Custom scale rule.
- Http
Pulumi.
Azure Native. App. Inputs. Http Scale Rule Response HTTP requests based scaling.
- Name string
Scale Rule Name
- Azure
Queue QueueScale Rule Response Azure Queue based scaling.
- Custom
Custom
Scale Rule Response Custom scale rule.
- Http
Http
Scale Rule Response HTTP requests based scaling.
- Name string
Scale Rule Name
- azure
Queue QueueScale Rule Response Azure Queue based scaling.
- custom
Custom
Scale Rule Response Custom scale rule.
- http
Http
Scale Rule Response HTTP requests based scaling.
- name String
Scale Rule Name
- azure
Queue QueueScale Rule Response Azure Queue based scaling.
- custom
Custom
Scale Rule Response Custom scale rule.
- http
Http
Scale Rule Response HTTP requests based scaling.
- name string
Scale Rule Name
- azure_
queue QueueScale Rule Response Azure Queue based scaling.
- custom
Custom
Scale Rule Response Custom scale rule.
- http
Http
Scale Rule Response HTTP requests based scaling.
- name str
Scale Rule Name
- azure
Queue Property Map Azure Queue based scaling.
- custom Property Map
Custom scale rule.
- http Property Map
HTTP requests based scaling.
- name String
Scale Rule Name
Scheme
- HTTP
- HTTP
- HTTPS
- HTTPS
- Scheme
HTTP - HTTP
- Scheme
HTTPS - HTTPS
- HTTP
- HTTP
- HTTPS
- HTTPS
- HTTP
- HTTP
- HTTPS
- HTTPS
- HTTP
- HTTP
- HTTPS
- HTTPS
- "HTTP"
- HTTP
- "HTTPS"
- HTTPS
Secret
SecretResponse
- Name string
Secret Name.
- Name string
Secret Name.
- name String
Secret Name.
- name string
Secret Name.
- name str
Secret Name.
- name String
Secret Name.
StorageType
- Azure
File - AzureFile
- Empty
Dir - EmptyDir
- Storage
Type Azure File - AzureFile
- Storage
Type Empty Dir - EmptyDir
- Azure
File - AzureFile
- Empty
Dir - EmptyDir
- Azure
File - AzureFile
- Empty
Dir - EmptyDir
- AZURE_FILE
- AzureFile
- EMPTY_DIR
- EmptyDir
- "Azure
File" - AzureFile
- "Empty
Dir" - EmptyDir
SystemDataResponse
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- Created
At string The timestamp of resource creation (UTC).
- Created
By string The identity that created the resource.
- Created
By stringType The type of identity that created the resource.
- Last
Modified stringAt The timestamp of resource last modification (UTC)
- Last
Modified stringBy The identity that last modified the resource.
- Last
Modified stringBy Type The type of identity that last modified the resource.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
- created
At string The timestamp of resource creation (UTC).
- created
By string The identity that created the resource.
- created
By stringType The type of identity that created the resource.
- last
Modified stringAt The timestamp of resource last modification (UTC)
- last
Modified stringBy The identity that last modified the resource.
- last
Modified stringBy Type The type of identity that last modified the resource.
- created_
at str The timestamp of resource creation (UTC).
- created_
by str The identity that created the resource.
- created_
by_ strtype The type of identity that created the resource.
- last_
modified_ strat The timestamp of resource last modification (UTC)
- last_
modified_ strby The identity that last modified the resource.
- last_
modified_ strby_ type The type of identity that last modified the resource.
- created
At String The timestamp of resource creation (UTC).
- created
By String The identity that created the resource.
- created
By StringType The type of identity that created the resource.
- last
Modified StringAt The timestamp of resource last modification (UTC)
- last
Modified StringBy The identity that last modified the resource.
- last
Modified StringBy Type The type of identity that last modified the resource.
Template
- Containers
List<Pulumi.
Azure Native. App. Inputs. Container> List of container definitions for the Container App.
- Revision
Suffix string User friendly suffix that is appended to the revision name
- Scale
Pulumi.
Azure Native. App. Inputs. Scale Scaling properties for the Container App.
- Volumes
List<Pulumi.
Azure Native. App. Inputs. Volume> List of volume definitions for the Container App.
- Containers []Container
List of container definitions for the Container App.
- Revision
Suffix string User friendly suffix that is appended to the revision name
- Scale Scale
Scaling properties for the Container App.
- Volumes []Volume
List of volume definitions for the Container App.
- containers List<Container>
List of container definitions for the Container App.
- revision
Suffix String User friendly suffix that is appended to the revision name
- scale Scale
Scaling properties for the Container App.
- volumes List<Volume>
List of volume definitions for the Container App.
- containers Container[]
List of container definitions for the Container App.
- revision
Suffix string User friendly suffix that is appended to the revision name
- scale Scale
Scaling properties for the Container App.
- volumes Volume[]
List of volume definitions for the Container App.
- containers Sequence[Container]
List of container definitions for the Container App.
- revision_
suffix str User friendly suffix that is appended to the revision name
- scale Scale
Scaling properties for the Container App.
- volumes Sequence[Volume]
List of volume definitions for the Container App.
- containers List<Property Map>
List of container definitions for the Container App.
- revision
Suffix String User friendly suffix that is appended to the revision name
- scale Property Map
Scaling properties for the Container App.
- volumes List<Property Map>
List of volume definitions for the Container App.
TemplateResponse
- Containers
List<Pulumi.
Azure Native. App. Inputs. Container Response> List of container definitions for the Container App.
- Revision
Suffix string User friendly suffix that is appended to the revision name
- Scale
Pulumi.
Azure Native. App. Inputs. Scale Response Scaling properties for the Container App.
- Volumes
List<Pulumi.
Azure Native. App. Inputs. Volume Response> List of volume definitions for the Container App.
- Containers
[]Container
Response List of container definitions for the Container App.
- Revision
Suffix string User friendly suffix that is appended to the revision name
- Scale
Scale
Response Scaling properties for the Container App.
- Volumes
[]Volume
Response List of volume definitions for the Container App.
- containers
List<Container
Response> List of container definitions for the Container App.
- revision
Suffix String User friendly suffix that is appended to the revision name
- scale
Scale
Response Scaling properties for the Container App.
- volumes
List<Volume
Response> List of volume definitions for the Container App.
- containers
Container
Response[] List of container definitions for the Container App.
- revision
Suffix string User friendly suffix that is appended to the revision name
- scale
Scale
Response Scaling properties for the Container App.
- volumes
Volume
Response[] List of volume definitions for the Container App.
- containers
Sequence[Container
Response] List of container definitions for the Container App.
- revision_
suffix str User friendly suffix that is appended to the revision name
- scale
Scale
Response Scaling properties for the Container App.
- volumes
Sequence[Volume
Response] List of volume definitions for the Container App.
- containers List<Property Map>
List of container definitions for the Container App.
- revision
Suffix String User friendly suffix that is appended to the revision name
- scale Property Map
Scaling properties for the Container App.
- volumes List<Property Map>
List of volume definitions for the Container App.
TrafficWeight
- Label string
Associates a traffic label with a revision
- Latest
Revision bool Indicates that the traffic weight belongs to a latest stable revision
- Revision
Name string Name of a revision
- Weight int
Traffic weight assigned to a revision
- Label string
Associates a traffic label with a revision
- Latest
Revision bool Indicates that the traffic weight belongs to a latest stable revision
- Revision
Name string Name of a revision
- Weight int
Traffic weight assigned to a revision
- label String
Associates a traffic label with a revision
- latest
Revision Boolean Indicates that the traffic weight belongs to a latest stable revision
- revision
Name String Name of a revision
- weight Integer
Traffic weight assigned to a revision
- label string
Associates a traffic label with a revision
- latest
Revision boolean Indicates that the traffic weight belongs to a latest stable revision
- revision
Name string Name of a revision
- weight number
Traffic weight assigned to a revision
- label str
Associates a traffic label with a revision
- latest_
revision bool Indicates that the traffic weight belongs to a latest stable revision
- revision_
name str Name of a revision
- weight int
Traffic weight assigned to a revision
- label String
Associates a traffic label with a revision
- latest
Revision Boolean Indicates that the traffic weight belongs to a latest stable revision
- revision
Name String Name of a revision
- weight Number
Traffic weight assigned to a revision
TrafficWeightResponse
- Label string
Associates a traffic label with a revision
- Latest
Revision bool Indicates that the traffic weight belongs to a latest stable revision
- Revision
Name string Name of a revision
- Weight int
Traffic weight assigned to a revision
- Label string
Associates a traffic label with a revision
- Latest
Revision bool Indicates that the traffic weight belongs to a latest stable revision
- Revision
Name string Name of a revision
- Weight int
Traffic weight assigned to a revision
- label String
Associates a traffic label with a revision
- latest
Revision Boolean Indicates that the traffic weight belongs to a latest stable revision
- revision
Name String Name of a revision
- weight Integer
Traffic weight assigned to a revision
- label string
Associates a traffic label with a revision
- latest
Revision boolean Indicates that the traffic weight belongs to a latest stable revision
- revision
Name string Name of a revision
- weight number
Traffic weight assigned to a revision
- label str
Associates a traffic label with a revision
- latest_
revision bool Indicates that the traffic weight belongs to a latest stable revision
- revision_
name str Name of a revision
- weight int
Traffic weight assigned to a revision
- label String
Associates a traffic label with a revision
- latest
Revision Boolean Indicates that the traffic weight belongs to a latest stable revision
- revision
Name String Name of a revision
- weight Number
Traffic weight assigned to a revision
Type
- Liveness
- Liveness
- Readiness
- Readiness
- Startup
- Startup
- Type
Liveness - Liveness
- Type
Readiness - Readiness
- Type
Startup - Startup
- Liveness
- Liveness
- Readiness
- Readiness
- Startup
- Startup
- Liveness
- Liveness
- Readiness
- Readiness
- Startup
- Startup
- LIVENESS
- Liveness
- READINESS
- Readiness
- STARTUP
- Startup
- "Liveness"
- Liveness
- "Readiness"
- Readiness
- "Startup"
- Startup
UserAssignedIdentityResponse
- Client
Id string The client ID of the assigned identity.
- Principal
Id string The principal ID of the assigned identity.
- Client
Id string The client ID of the assigned identity.
- Principal
Id string The principal ID of the assigned identity.
- client
Id String The client ID of the assigned identity.
- principal
Id String The principal ID of the assigned identity.
- client
Id string The client ID of the assigned identity.
- principal
Id string The principal ID of the assigned identity.
- client_
id str The client ID of the assigned identity.
- principal_
id str The principal ID of the assigned identity.
- client
Id String The client ID of the assigned identity.
- principal
Id String The principal ID of the assigned identity.
Volume
- Name string
Volume name.
- Storage
Name string Name of storage resource. No need to provide for EmptyDir.
- Storage
Type string | Pulumi.Azure Native. App. Storage Type Storage type for the volume. If not provided, use EmptyDir.
- Name string
Volume name.
- Storage
Name string Name of storage resource. No need to provide for EmptyDir.
- Storage
Type string | StorageType Storage type for the volume. If not provided, use EmptyDir.
- name String
Volume name.
- storage
Name String Name of storage resource. No need to provide for EmptyDir.
- storage
Type String | StorageType Storage type for the volume. If not provided, use EmptyDir.
- name string
Volume name.
- storage
Name string Name of storage resource. No need to provide for EmptyDir.
- storage
Type string | StorageType Storage type for the volume. If not provided, use EmptyDir.
- name str
Volume name.
- storage_
name str Name of storage resource. No need to provide for EmptyDir.
- storage_
type str | StorageType Storage type for the volume. If not provided, use EmptyDir.
- name String
Volume name.
- storage
Name String Name of storage resource. No need to provide for EmptyDir.
- storage
Type String | "AzureFile" | "Empty Dir" Storage type for the volume. If not provided, use EmptyDir.
VolumeMount
- Mount
Path string Path within the container at which the volume should be mounted.Must not contain ':'.
- Volume
Name string This must match the Name of a Volume.
- Mount
Path string Path within the container at which the volume should be mounted.Must not contain ':'.
- Volume
Name string This must match the Name of a Volume.
- mount
Path String Path within the container at which the volume should be mounted.Must not contain ':'.
- volume
Name String This must match the Name of a Volume.
- mount
Path string Path within the container at which the volume should be mounted.Must not contain ':'.
- volume
Name string This must match the Name of a Volume.
- mount_
path str Path within the container at which the volume should be mounted.Must not contain ':'.
- volume_
name str This must match the Name of a Volume.
- mount
Path String Path within the container at which the volume should be mounted.Must not contain ':'.
- volume
Name String This must match the Name of a Volume.
VolumeMountResponse
- Mount
Path string Path within the container at which the volume should be mounted.Must not contain ':'.
- Volume
Name string This must match the Name of a Volume.
- Mount
Path string Path within the container at which the volume should be mounted.Must not contain ':'.
- Volume
Name string This must match the Name of a Volume.
- mount
Path String Path within the container at which the volume should be mounted.Must not contain ':'.
- volume
Name String This must match the Name of a Volume.
- mount
Path string Path within the container at which the volume should be mounted.Must not contain ':'.
- volume
Name string This must match the Name of a Volume.
- mount_
path str Path within the container at which the volume should be mounted.Must not contain ':'.
- volume_
name str This must match the Name of a Volume.
- mount
Path String Path within the container at which the volume should be mounted.Must not contain ':'.
- volume
Name String This must match the Name of a Volume.
VolumeResponse
- Name string
Volume name.
- Storage
Name string Name of storage resource. No need to provide for EmptyDir.
- Storage
Type string Storage type for the volume. If not provided, use EmptyDir.
- Name string
Volume name.
- Storage
Name string Name of storage resource. No need to provide for EmptyDir.
- Storage
Type string Storage type for the volume. If not provided, use EmptyDir.
- name String
Volume name.
- storage
Name String Name of storage resource. No need to provide for EmptyDir.
- storage
Type String Storage type for the volume. If not provided, use EmptyDir.
- name string
Volume name.
- storage
Name string Name of storage resource. No need to provide for EmptyDir.
- storage
Type string Storage type for the volume. If not provided, use EmptyDir.
- name str
Volume name.
- storage_
name str Name of storage resource. No need to provide for EmptyDir.
- storage_
type str Storage type for the volume. If not provided, use EmptyDir.
- name String
Volume name.
- storage
Name String Name of storage resource. No need to provide for EmptyDir.
- storage
Type String Storage type for the volume. If not provided, use EmptyDir.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:app:ContainerApp testcontainerApp0 /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/rg/providers/Microsoft.App/containerApps/testcontainerApp0
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0