Microsoft.ContainerService managedClusters/trustedAccessRoleBindings 2023-02-02-preview
- Latest
- 2024-06-02-preview
- 2024-05-02-preview
- 2024-05-01
- 2024-04-02-preview
- 2024-03-02-preview
- 2024-02-01
- 2024-01-02-preview
- 2024-01-01
- 2023-11-02-preview
- 2023-11-01
- 2023-10-02-preview
- 2023-10-01
- 2023-09-02-preview
- 2023-09-01
- 2023-08-02-preview
- 2023-07-02-preview
- 2023-06-02-preview
- 2023-05-02-preview
- 2023-04-02-preview
- 2023-03-02-preview
- 2023-02-02-preview
- 2023-01-02-preview
- 2022-11-02-preview
- 2022-10-02-preview
- 2022-08-03-preview
- 2022-08-02-preview
Bicep resource definition
The managedClusters/trustedAccessRoleBindings resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings@2023-02-02-preview' = {
name: 'string'
parent: resourceSymbolicName
properties: {
roles: [
'string'
]
sourceResourceId: 'string'
}
}
Property values
managedClusters/trustedAccessRoleBindings
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: managedClusters |
properties | Properties for trusted access role binding | TrustedAccessRoleBindingProperties (required) |
TrustedAccessRoleBindingProperties
Name | Description | Value |
---|---|---|
roles | A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'. | string[] (required) |
sourceResourceId | The ARM resource ID of source resource that trusted access is configured for. | string (required) |
ARM template resource definition
The managedClusters/trustedAccessRoleBindings resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings resource, add the following JSON to your template.
{
"type": "Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings",
"apiVersion": "2023-02-02-preview",
"name": "string",
"properties": {
"roles": [ "string" ],
"sourceResourceId": "string"
}
}
Property values
managedClusters/trustedAccessRoleBindings
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings' |
apiVersion | The resource api version | '2023-02-02-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | Properties for trusted access role binding | TrustedAccessRoleBindingProperties (required) |
TrustedAccessRoleBindingProperties
Name | Description | Value |
---|---|---|
roles | A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'. | string[] (required) |
sourceResourceId | The ARM resource ID of source resource that trusted access is configured for. | string (required) |
Terraform (AzAPI provider) resource definition
The managedClusters/trustedAccessRoleBindings 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.ContainerService/managedClusters/trustedAccessRoleBindings resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings@2023-02-02-preview"
name = "string"
parent_id = "string"
body = jsonencode({
properties = {
roles = [
"string"
]
sourceResourceId = "string"
}
})
}
Property values
managedClusters/trustedAccessRoleBindings
Name | Description | Value |
---|---|---|
type | The resource type | "Microsoft.ContainerService/managedClusters/trustedAccessRoleBindings@2023-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: managedClusters |
properties | Properties for trusted access role binding | TrustedAccessRoleBindingProperties (required) |
TrustedAccessRoleBindingProperties
Name | Description | Value |
---|---|---|
roles | A list of roles to bind, each item is a resource type qualified role name. For example: 'Microsoft.MachineLearningServices/workspaces/reader'. | string[] (required) |
sourceResourceId | The ARM resource ID of source resource that trusted access is configured for. | string (required) |