Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Terraform azurerm to v3.110.0 #3292

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infrastructure/state.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.106.0"
version = "3.110.0"
}
azuread = {
source = "hashicorp/azuread"
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/tf-db-flexible.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Postgres 15 flexible servers
locals {
db_host_name = "${var.product}-${var.component}-flexible-postgres-db-v15"
db_name = "bulk_scan"
db_name = "bulk_scan"
}

module "postgresql" {
Expand All @@ -28,7 +28,7 @@ module "postgresql" {

admin_user_object_id = var.jenkins_AAD_objectId

enable_schema_ownership = true
enable_schema_ownership = true
force_schema_ownership_trigger = "true"
force_user_permissions_trigger = "1"
}