Skip to content

Commit

Permalink
Rename extended_location_custom_location -> extended_custom_location
Browse files Browse the repository at this point in the history
The resource name is already without the first "location", but the
documentation was wrong.

Fixes #28744
  • Loading branch information
orgads committed Feb 11, 2025
1 parent 1b0e4f9 commit a1144cd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ FEATURES:
* New Resource: `azurerm_ai_services` ([#26008](https://github.com/hashicorp/terraform-provider-azurerm/issues/26008))
* New Resource: `azurerm_communication_service_email_domain_association` ([#26432](https://github.com/hashicorp/terraform-provider-azurerm/issues/26432))
* New Resource: `azurerm_dev_center_project_environment_type` ([#26941](https://github.com/hashicorp/terraform-provider-azurerm/issues/26941))
* New Resource: `azurerm_extended_location_custom_location` ([#24267](https://github.com/hashicorp/terraform-provider-azurerm/issues/24267))
* New Resource: `azurerm_extended_custom_location` ([#24267](https://github.com/hashicorp/terraform-provider-azurerm/issues/24267))
* New Resource: `azurerm_postgresql_flexible_server_virtual_endpoint` ([#26708](https://github.com/hashicorp/terraform-provider-azurerm/issues/26708))

ENHANCEMENTS:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
subcategory: "Extended Location"
layout: "azurerm"
page_title: "Azure Resource Manager: azurerm_extended_location_custom_location"
page_title: "Azure Resource Manager: azurerm_extended_custom_location"
description: |-
Manages a Custom Location within an Extended Location.
---

# azurerm_extended_location_custom_location
# azurerm_extended_custom_location

Manages a Custom Location within an Extended Location.

Expand Down Expand Up @@ -69,7 +69,7 @@ resource "azurerm_arc_kubernetes_cluster_extension" "example" {
extension_type = "microsoft.flux"
}
resource "azurerm_extended_location_custom_location" "example" {
resource "azurerm_extended_custom_location" "example" {
name = "example-custom-location"
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
Expand Down Expand Up @@ -133,6 +133,6 @@ The `timeouts` block allows you to specify [timeouts](https://www.terraform.io/l
Custom Locations can be imported using the resource id, e.g.

```shell
terraform import azurerm_extended_location_custom_location.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example-resources/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location
terraform import azurerm_extended_custom_location.example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example-resources/providers/Microsoft.ExtendedLocation/customLocations/example-custom-location
```

0 comments on commit a1144cd

Please sign in to comment.