Skip to content

Commit

Permalink
fix: syntax fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bibek4699 committed Aug 18, 2023
1 parent 89aa16b commit 3c894a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions examples/mysql_instance_with_read_replica/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
# provider being missing.

provider "google" {
project = var.google_project
region = var.google_region
#credentials = var.google_credentials
project = var.google_project
region = var.google_region
credentials = var.google_credentials

scopes = [
# Default scopes
Expand Down
8 changes: 4 additions & 4 deletions examples/mysql_instance_with_read_replica/variable-general.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ variable "google_region" {
type = string
}

#variable "google_credentials" {
# description = "(Required) Currently the only supported service account credentials are credentials downloaded from Cloud Console or generated by gcloud"
# type = string
#}
variable "google_credentials" {
description = "(Required) Currently the only supported service account credentials are credentials downloaded from Cloud Console or generated by gcloud"
type = string
}

0 comments on commit 3c894a1

Please sign in to comment.