Fix typo in net-vpc DNS policies

This commit is contained in:
Julio Castillo 2023-01-19 00:00:31 +01:00
parent 4897aa7109
commit 410b7f5ba3
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/** /**
* Copyright 2022 Google LLC * Copyright 2023 Google LLC
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -109,7 +109,7 @@ resource "google_dns_policy" "default" {
) )
iterator = ns iterator = ns
content { content {
ipv4_address = ns.key ipv4_address = ns.value
forwarding_path = "private" forwarding_path = "private"
} }
} }
@ -121,7 +121,7 @@ resource "google_dns_policy" "default" {
) )
iterator = ns iterator = ns
content { content {
ipv4_address = ns.key ipv4_address = ns.value
} }
} }
} }