Skip to content

Commit

Permalink
Test Digger
Browse files Browse the repository at this point in the history
  • Loading branch information
jace-ys committed Oct 20, 2024
1 parent ec439a3 commit c682496
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Taskfile.infra.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions infra/environments/dev/gcp/terraform.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
terraform {
required_version = "~> 1.9.8"

required_providers {
google = {
source = "hashicorp/google"
version = "6.7.0"
}
}
}

provider "google" {
project = var.google_project
region = var.google_region

add_terraform_attribution_label = true
}
9 changes: 9 additions & 0 deletions infra/environments/dev/gcp/variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
variable "google_project" {
type = string
default = "emp-jace-a850"
}

variable "google_region" {
type = string
default = "europe-west1"
}

0 comments on commit c682496

Please sign in to comment.