Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azurerm_cdn_frontdoor_origin: add managedEnvironments target_type #28239

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions internal/services/cdn/cdn_frontdoor_origin_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ func resourceCdnFrontDoorOrigin() *pluginsdk.Resource {
ValidateFunc: validation.StringInSlice([]string{
"blob",
"blob_secondary",
"managedEnvironments",
"sites",
"web",
}, false),
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/cdn_frontdoor_origin.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ A `private_link` block supports the following:

* `request_message` - (Optional) Specifies the request message that will be submitted to the `private_link_target_id` when requesting the private link endpoint connection. Values must be between `1` and `140` characters in length. Defaults to `Access request for CDN FrontDoor Private Link Origin`.

* `target_type` - (Optional) Specifies the type of target for this Private Link Endpoint. Possible values are `blob`, `blob_secondary`, `web` and `sites`.
* `target_type` - (Optional) Specifies the type of target for this Private Link Endpoint. Possible values are `blob`, `blob_secondary`, `managedEnvironments`, `sites` and `web`.

-> **NOTE:** `target_type` cannot be specified when using a Load Balancer as an Origin.

Expand Down
Loading