File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
environment/deployments/science-platform Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -142,4 +142,4 @@ activate_apis = [
142142]
143143
144144# Increase this number to force Terraform to update the dev environment.
145- # Serial: 31
145+ # Serial: 32
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ module "netapp-volumes" {
5454 for voldef in var . netapp_definitions : " ${ voldef . name } " => voldef
5555 })
5656 source = " ../../../modules/netapp_volumes"
57- network = module. project_factory . network_name
57+ network = module. project_factory . network . network_id
5858 project = module. project_factory . project_id
5959 location = var. subnets [0 ]. subnet_region
6060 labels = {
Original file line number Diff line number Diff line change @@ -130,7 +130,8 @@ resource "google_netapp_backup_policy" "instance" {
130130
131131# Disabled if the default quota is not set
132132resource "google_netapp_volume_quota_rule" "default_user_quota" {
133-
133+ project = var. project
134+ location = var. location
134135 count = var. definition . default_user_quota_mib == null ? 0 : 1
135136
136137 name = " ${ var . definition . name } -default-quota"
@@ -148,7 +149,8 @@ resource "google_netapp_volume_quota_rule" "individual_user_quota" {
148149 for_each = tomap ({
149150 for quota in var . definition . override_user_quotas : " ${ quota . uid } " => quota
150151 })
151-
152+ project = var. project
153+ location = var. location
152154 depends_on = [google_netapp_volume . instance ]
153155 type = " INDIVIDUAL_USER_QUOTA"
154156 labels = var. labels
You can’t perform that action at this time.
0 commit comments