Skip to content

Commit

Permalink
Update 101-front-door-standard-premium to use azurerm 3.67.0 (#242)
Browse files Browse the repository at this point in the history
* Update 101-front-door-standard-premium to use azurerm 3.67.0

* Update provider version
  • Loading branch information
johndowns committed Aug 9, 2023
1 parent d13b385 commit 9e77030
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.27.0"
version = "~> 3.0"
}

azapi = {
Expand Down
8 changes: 4 additions & 4 deletions quickstart/101-front-door-standard-premium/app-service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ resource "azurerm_windows_web_app" "app" {
site_config {
ftps_state = "Disabled"
minimum_tls_version = "1.2"
ip_restriction = [{
ip_restriction {
service_tag = "AzureFrontDoor.Backend"
ip_address = null
virtual_network_subnet_id = null
action = "Allow"
priority = 100
headers = [{
headers {
x_azure_fdid = [azurerm_cdn_frontdoor_profile.my_front_door.resource_guid]
x_fd_health_probe = []
x_forwarded_for = []
x_forwarded_host = []
}]
}
name = "Allow traffic from Front Door"
}]
}
}
}
2 changes: 1 addition & 1 deletion quickstart/101-front-door-standard-premium/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.27.0"
version = "~> 3.67.0"
}

random = {
Expand Down

0 comments on commit 9e77030

Please sign in to comment.