Skip to content

Commit

Permalink
bump providers
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Jan 17, 2024
1 parent 1b2a4ed commit cf77036
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.79.0"
version = "3.87.0"
}
azuread = {
source = "hashicorp/azuread"
version = "2.45.0"
version = "2.47.0"
}
dns = {
source = "hashicorp/dns"
version = "3.2.3"
version = "3.4.0"
}
acme = {
source = "vancluever/acme"
version = "2.18.0"
version = "2.19.0"
}
tls = {
source = "hashicorp/tls"
version = "4.0.4"
version = "4.0.5"
}
}
backend "azurerm" {
Expand Down
2 changes: 1 addition & 1 deletion modules/common/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
acme = {
source = "vancluever/acme"
version = "2.18.0"
version = "2.19.0"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions modules/recruiting/ghost/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
acme = {
source = "vancluever/acme"
version = "2.18.0"
version = "2.19.0"
}
}
}
Expand Down Expand Up @@ -79,9 +79,9 @@ resource "azurerm_app_service_custom_hostname_binding" "tikjob_hostname_binding"
app_service_name = azurerm_linux_web_app.tikjob_ghost.name
resource_group_name = var.tikweb_rg_name

lifecycle {
ignore_changes = [ssl_state, thumbprint]
}
# lifecycle {
# ignore_changes = [ssl_state, thumbprint]
# }

# Deletion may need manual work.
# https://github.com/hashicorp/terraform-provider-azurerm/issues/11231
Expand Down
12 changes: 6 additions & 6 deletions modules/tenttiarkisto/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ resource "azurerm_app_service_custom_hostname_binding" "tenttiarkisto_hostname_b
app_service_name = azurerm_linux_web_app.tenttiarkisto.name
hostname = "tenttiarkisto.fi"

lifecycle {
ignore_changes = [ssl_state, thumbprint]
}
# lifecycle {
# ignore_changes = [ssl_state, thumbprint]
# }

depends_on = [
azurerm_dns_txt_record.tenttiarkisto_txt_asuid,
Expand All @@ -167,9 +167,9 @@ resource "azurerm_app_service_custom_hostname_binding" "tenttiarkisto_www_hostna
app_service_name = azurerm_linux_web_app.tenttiarkisto.name
hostname = "www.tenttiarkisto.fi"

lifecycle {
ignore_changes = [ssl_state, thumbprint]
}
# lifecycle {
# ignore_changes = [ssl_state, thumbprint]
# }

depends_on = [
azurerm_dns_cname_record.tenttiarkisto_cname_www,
Expand Down

0 comments on commit cf77036

Please sign in to comment.