Add redis sentinel to gstg.
Showing
... | ... | @@ -52,7 +52,7 @@ resource "google_compute_instance" "instance_with_attached_disk" { |
service_account { | ||
// this should be the instance under which the instance should be running, rather than the one creating it... | ||
email = "[email protected]serviceaccount.com" | ||
email = "${var.service_account_email}" | ||
// all the defaults plus cloudkms to access kms | ||
scopes = [ | ||
... | ... |
... | ... | @@ -51,7 +51,7 @@ resource "google_compute_instance" "sentinel_instance_with_attached_disk" { |
service_account { | ||
// this should be the instance under which the instance should be running, rather than the one creating it... | ||
email = "[email protected]serviceaccount.com" | ||
email = "${var.service_account_email}" | ||
// all the defaults plus cloudkms to access kms | ||
scopes = [ | ||
... | ... |
Please register or sign in to comment