Skip to content

Commit

Permalink
Fix svc plan SKU typo (#16364)
Browse files Browse the repository at this point in the history
* Fix svc plan SKU typo

* P1V2 --> P1v2
  • Loading branch information
yuvalherziger authored Apr 13, 2022
1 parent b611423 commit 455056e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion website/docs/r/app_service_source_control.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Linux"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_linux_web_app" "example" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Linux"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_linux_web_app" "example" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/linux_web_app.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Linux"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_linux_web_app" "example" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/linux_web_app_slot.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Linux"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_linux_web_app" "example" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/service_plan.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Linux"
sku_name = "P1V2"
sku_name = "P1v2"
}
```

Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/web_app_active_slot.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Windows"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_windows_web_app" "example" {
Expand Down Expand Up @@ -71,7 +71,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Linux"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_linux_web_app" "example" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/windows_web_app.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "azurerm_service_plan" "example" {
name = "example"
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_windows_web_app" "example" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/windows_web_app_slot.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "azurerm_service_plan" "example" {
resource_group_name = azurerm_resource_group.example.name
location = "West Europe"
os_type = "Windows"
sku_name = "P1V2"
sku_name = "P1v2"
}
resource "azurerm_windows_web_app" "example" {
Expand Down

0 comments on commit 455056e

Please sign in to comment.