Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
update resources.tf in bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
hexadecimalDinosaur committed Oct 15, 2023
1 parent 28356c3 commit bdb8cd4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions deploy_bundle/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ terraform {
provider "google" {
credentials = file("gcp_creds.json")
project = "omega-presence-402013"
region = ""
zone = ""
region = "northamerica-northeast2"
zone = "northamerica-northeast2"
}

resource "google_compute_network" "project_vpc" {
Expand All @@ -23,7 +23,7 @@ resource "google_compute_subnetwork" "project_subnet" {
network = google_compute_network.project_vpc.name
name = "infrabundle-pub-subnet"
ip_cidr_range = "10.0.1.0/24"
region = ""
region = "northamerica-northeast2"
}


Expand Down Expand Up @@ -55,7 +55,7 @@ resource "google_compute_network_firewall_policy_rule" "ssh-http" {

resource "google_compute_instance" "project_webserver" {
name = "infrabundle-webserver"
machine_type = ""
machine_type = "e2-micro"
boot_disk {
initialize_params {
image = "projects/debian-cloud/global/images/debian-12-bookworm-v20231010"
Expand Down

0 comments on commit bdb8cd4

Please sign in to comment.