Update 101-front-door-standard-premium to use azurerm 3.67.0 (#242)

* Update 101-front-door-standard-premium to use azurerm 3.67.0

* Update provider version
This commit is contained in:
John Downs 2023-08-09 14:15:20 +12:00 committed by GitHub
parent d13b385744
commit 9e77030272
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.27.0"
version = "~> 3.0"
}
azapi = {

View File

@ -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"
}]
}
}
}

View File

@ -3,7 +3,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.27.0"
version = "~> 3.67.0"
}
random = {