Skip to content

Commit

Permalink
missed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wyattfry committed Jan 15, 2025
1 parent 211fbc0 commit 4f0d672
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions website/docs/5.0-upgrade-guide.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ Please follow the format in the example below for listing breaking changes in re

* The `minimal_tls_version` property no longer accepts `Tls` or `Tls11` as a value.

### `azurerm_datadog_monitor_sso_configuration`

* The `single_sign_on_enabled` property has been renamed to `single_sign_on` with the possible values `Enable`, `Disable`, `Initial`, and `Existing`.

### `azurerm_eventhub`

* The deprecated `namespace_name` property has been removed in favour of the `namespace_id` property.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "azurerm_datadog_monitor" "example" {
resource "azurerm_datadog_monitor_sso_configuration" "example" {
datadog_monitor_id = azurerm_datadog_monitor.example.id
single_sign_on_enabled = "Enable"
single_sign_on = "Enable"
enterprise_application_id = "XXXX"
}
```
Expand All @@ -50,7 +50,7 @@ The following arguments are supported:

* `datadog_monitor_id` - (Required) The Datadog Monitor Id which should be used for this Datadog Monitor SSO Configuration. Changing this forces a new Datadog Monitor SSO Configuration to be created.

* `single_sign_on_enabled` - (Required) The state of SingleSignOn configuration. Possible values are `Enable` and `Disable`.
* `single_sign_on` - (Required) The state of SingleSignOn configuration. Possible values are `Enable`, `Disable`, `Initial`, and `Existing`.

* `enterprise_application_id` - (Required) The application Id to perform SSO operation.

Expand Down

0 comments on commit 4f0d672

Please sign in to comment.