Skip to content

Commit

Permalink
add google-beta provider
Browse files Browse the repository at this point in the history
  • Loading branch information
jawabuu committed Nov 25, 2020
1 parent 2bec3a2 commit 7d46654
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions provider/google/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ provider "google" {
credentials = file(var.creds_file)
}

provider "google-beta" {
region = var.region
zone = var.region_zone
project = var.project
credentials = file(var.creds_file)
}

resource "google_compute_firewall" "default" {
name = "kube-firewall"
network = google_compute_network.kube-hosts.self_link
Expand Down

0 comments on commit 7d46654

Please sign in to comment.