Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzo12 committed Oct 18, 2024
1 parent c159aa2 commit e723597
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scopes/gke_and_state_bucket/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ terraform {

backend "gcs" {
bucket = "lpt-schulung-bucket-tfstate"
prefix = "gke_and_state_bucket"
prefix = "ssh_bastion"
}
}

Expand Down
4 changes: 2 additions & 2 deletions scopes/ssh-bastion/00_ssh_bastion.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ data "google_project" "project" {

data "google_compute_network" "gke_vpc" {
name = var.vpc_name
project = data.google_project.project.id
project = data.google_project.project.project_id
}

data "google_compute_subnetwork" "master_subnet" {
name = var.subnet_name
project = data.google_project.project.id
project = data.google_project.project.project_id
}


Expand Down

0 comments on commit e723597

Please sign in to comment.