Fix typos

This commit is contained in:
Andrew Dryga
2023-10-20 00:38:27 -06:00
parent 7464ee91bd
commit 414028a8ee
3 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ resource "google_compute_network" "gateways" {
auto_create_subnetworks = false
depends_on = [
google_project_service.compute
module.api
]
}

View File

@@ -708,6 +708,10 @@ module "relays" {
portal_websocket_url = "wss://api.${local.tld}"
portal_token = var.relay_portal_token
depends_on = [
module.api
]
}
resource "google_compute_firewall" "portal-ssh-ipv4" {

View File

@@ -9,7 +9,3 @@ output "target_tags" {
output "instances" {
value = var.compute_instances
}
output "network" {
value = google_compute_network.network.self_link
}