Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The monitors/singleSignOnConfigurations 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 Dynatrace.Observability/monitors/singleSignOnConfigurations resource, add the following Bicep to your template.
resource symbolicname 'Dynatrace.Observability/monitors/singleSignOnConfigurations@2023-04-27' = {
parent: resourceSymbolicName
name: 'string'
properties: {
aadDomains: [
'string'
]
enterpriseAppId: 'string'
singleSignOnState: 'string'
singleSignOnUrl: 'string'
}
}
Property Values
Dynatrace.Observability/monitors/singleSignOnConfigurations
Name | Description | Value |
---|---|---|
name | The resource name | 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: monitors |
properties | The resource-specific properties for this resource. | DynatraceSingleSignOnProperties (required) |
DynatraceSingleSignOnProperties
Name | Description | Value |
---|---|---|
aadDomains | array of Aad(azure active directory) domains | string[] |
enterpriseAppId | Version of the Dynatrace agent installed on the VM. | string |
singleSignOnState | State of Single Sign On | 'Disable' 'Enable' 'Existing' 'Initial' |
singleSignOnUrl | The login URL specific to this Dynatrace Environment | string |
ARM template resource definition
The monitors/singleSignOnConfigurations 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 Dynatrace.Observability/monitors/singleSignOnConfigurations resource, add the following JSON to your template.
{
"type": "Dynatrace.Observability/monitors/singleSignOnConfigurations",
"apiVersion": "2023-04-27",
"name": "string",
"properties": {
"aadDomains": [ "string" ],
"enterpriseAppId": "string",
"singleSignOnState": "string",
"singleSignOnUrl": "string"
}
}
Property Values
Dynatrace.Observability/monitors/singleSignOnConfigurations
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2023-04-27' |
name | The resource name | string (required) |
properties | The resource-specific properties for this resource. | DynatraceSingleSignOnProperties (required) |
type | The resource type | 'Dynatrace.Observability/monitors/singleSignOnConfigurations' |
DynatraceSingleSignOnProperties
Name | Description | Value |
---|---|---|
aadDomains | array of Aad(azure active directory) domains | string[] |
enterpriseAppId | Version of the Dynatrace agent installed on the VM. | string |
singleSignOnState | State of Single Sign On | 'Disable' 'Enable' 'Existing' 'Initial' |
singleSignOnUrl | The login URL specific to this Dynatrace Environment | string |
Usage Examples
Terraform (AzAPI provider) resource definition
The monitors/singleSignOnConfigurations 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 Dynatrace.Observability/monitors/singleSignOnConfigurations resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Dynatrace.Observability/monitors/singleSignOnConfigurations@2023-04-27"
name = "string"
parent_id = "string"
body = {
properties = {
aadDomains = [
"string"
]
enterpriseAppId = "string"
singleSignOnState = "string"
singleSignOnUrl = "string"
}
}
}
Property Values
Dynatrace.Observability/monitors/singleSignOnConfigurations
Name | Description | Value |
---|---|---|
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: monitors |
properties | The resource-specific properties for this resource. | DynatraceSingleSignOnProperties (required) |
type | The resource type | "Dynatrace.Observability/monitors/singleSignOnConfigurations@2023-04-27" |
DynatraceSingleSignOnProperties
Name | Description | Value |
---|---|---|
aadDomains | array of Aad(azure active directory) domains | string[] |
enterpriseAppId | Version of the Dynatrace agent installed on the VM. | string |
singleSignOnState | State of Single Sign On | 'Disable' 'Enable' 'Existing' 'Initial' |
singleSignOnUrl | The login URL specific to this Dynatrace Environment | string |