Microsoft.App connectedEnvironments/storages 2024-02-02-preview

Bicep resource definition

The connectedEnvironments/storages resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/connectedEnvironments/storages resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.App/connectedEnvironments/storages@2024-02-02-preview' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    azureFile: {
      accessMode: 'string'
      accountKey: 'string'
      accountName: 'string'
      shareName: 'string'
    }
    smb: {
      accessMode: 'string'
      domain: 'string'
      host: 'string'
      password: 'string'
      shareName: 'string'
      username: 'string'
    }
  }
}

Property values

connectedEnvironments/storages

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: connectedEnvironments
properties Storage properties ConnectedEnvironmentStorageProperties

ConnectedEnvironmentStorageProperties

Name Description Value
azureFile Azure file properties AzureFileProperties
smb SMB storage properties SmbStorage

AzureFileProperties

Name Description Value
accessMode Access mode for storage 'ReadOnly'
'ReadWrite'
accountKey Storage account key for azure file. string

Constraints:
Sensitive value. Pass in as a secure parameter.
accountName Storage account name for azure file. string
shareName Azure file share name. string

SmbStorage

Name Description Value
accessMode Access mode for storage 'ReadOnly'
'ReadWrite'
domain The domain name for the user. string
host The host name or IP address of the SMB server. string
password The password for the user. string

Constraints:
Sensitive value. Pass in as a secure parameter.
shareName The path to the SMB shared folder. string
username The user to log on to the SMB server. string

ARM template resource definition

The connectedEnvironments/storages resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/connectedEnvironments/storages resource, add the following JSON to your template.

{
  "type": "Microsoft.App/connectedEnvironments/storages",
  "apiVersion": "2024-02-02-preview",
  "name": "string",
  "properties": {
    "azureFile": {
      "accessMode": "string",
      "accountKey": "string",
      "accountName": "string",
      "shareName": "string"
    },
    "smb": {
      "accessMode": "string",
      "domain": "string",
      "host": "string",
      "password": "string",
      "shareName": "string",
      "username": "string"
    }
  }
}

Property values

connectedEnvironments/storages

Name Description Value
type The resource type 'Microsoft.App/connectedEnvironments/storages'
apiVersion The resource api version '2024-02-02-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
properties Storage properties ConnectedEnvironmentStorageProperties

ConnectedEnvironmentStorageProperties

Name Description Value
azureFile Azure file properties AzureFileProperties
smb SMB storage properties SmbStorage

AzureFileProperties

Name Description Value
accessMode Access mode for storage 'ReadOnly'
'ReadWrite'
accountKey Storage account key for azure file. string

Constraints:
Sensitive value. Pass in as a secure parameter.
accountName Storage account name for azure file. string
shareName Azure file share name. string

SmbStorage

Name Description Value
accessMode Access mode for storage 'ReadOnly'
'ReadWrite'
domain The domain name for the user. string
host The host name or IP address of the SMB server. string
password The password for the user. string

Constraints:
Sensitive value. Pass in as a secure parameter.
shareName The path to the SMB shared folder. string
username The user to log on to the SMB server. string

Terraform (AzAPI provider) resource definition

The connectedEnvironments/storages resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.App/connectedEnvironments/storages resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.App/connectedEnvironments/storages@2024-02-02-preview"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      azureFile = {
        accessMode = "string"
        accountKey = "string"
        accountName = "string"
        shareName = "string"
      }
      smb = {
        accessMode = "string"
        domain = "string"
        host = "string"
        password = "string"
        shareName = "string"
        username = "string"
      }
    }
  })
}

Property values

connectedEnvironments/storages

Name Description Value
type The resource type "Microsoft.App/connectedEnvironments/storages@2024-02-02-preview"
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: connectedEnvironments
properties Storage properties ConnectedEnvironmentStorageProperties

ConnectedEnvironmentStorageProperties

Name Description Value
azureFile Azure file properties AzureFileProperties
smb SMB storage properties SmbStorage

AzureFileProperties

Name Description Value
accessMode Access mode for storage "ReadOnly"
"ReadWrite"
accountKey Storage account key for azure file. string

Constraints:
Sensitive value. Pass in as a secure parameter.
accountName Storage account name for azure file. string
shareName Azure file share name. string

SmbStorage

Name Description Value
accessMode Access mode for storage "ReadOnly"
"ReadWrite"
domain The domain name for the user. string
host The host name or IP address of the SMB server. string
password The password for the user. string

Constraints:
Sensitive value. Pass in as a secure parameter.
shareName The path to the SMB shared folder. string
username The user to log on to the SMB server. string