From e7235976b20429e7cc91f18bcc53290e520d9dc4 Mon Sep 17 00:00:00 2001 From: "patrick.siegel" Date: Fri, 18 Oct 2024 13:08:20 +0200 Subject: [PATCH] Fix typos --- scopes/gke_and_state_bucket/provider.tf | 2 +- scopes/ssh-bastion/00_ssh_bastion.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scopes/gke_and_state_bucket/provider.tf b/scopes/gke_and_state_bucket/provider.tf index 15d42fd..92d0e72 100644 --- a/scopes/gke_and_state_bucket/provider.tf +++ b/scopes/gke_and_state_bucket/provider.tf @@ -8,7 +8,7 @@ terraform { backend "gcs" { bucket = "lpt-schulung-bucket-tfstate" - prefix = "gke_and_state_bucket" + prefix = "ssh_bastion" } } diff --git a/scopes/ssh-bastion/00_ssh_bastion.tf b/scopes/ssh-bastion/00_ssh_bastion.tf index 0428644..e131a6f 100644 --- a/scopes/ssh-bastion/00_ssh_bastion.tf +++ b/scopes/ssh-bastion/00_ssh_bastion.tf @@ -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 }