-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate google_client_email parameter
No longer needed since fog/fog-google@03e91b1
- Loading branch information
Showing
10 changed files
with
3 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,6 @@ vendor/* | |
|
||
# Intellij projects folder | ||
.idea | ||
|
||
# Env | ||
setenv_*.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,6 @@ Vagrant.configure("2") do |config| | |
|
||
config.vm.provider :google do |google, override| | ||
google.google_project_id = "YOUR_GOOGLE_CLOUD_PROJECT_ID" | ||
google.google_client_email = "YOUR_SERVICE_ACCOUNT_EMAIL_ADDRESS" | ||
google.google_json_key_location = "/path/to/your/private-key.json" | ||
|
||
google.image_family = 'ubuntu-1604-lts' | ||
|
@@ -165,8 +164,6 @@ configuration for this provider. | |
|
||
This provider exposes quite a few provider-specific configuration options: | ||
|
||
* `google_client_email` - The Client Email address for your Service Account. | ||
(Can also be configured with `GOOGLE_CLIENT_EMAIL` environment variable.) | ||
* `google_json_key_location` - The location of the JSON private key file matching your | ||
Service Account. | ||
(Can also be configured with `GOOGLE_JSON_KEY_LOCATION` environment variable.) | ||
|
@@ -231,7 +228,6 @@ Vagrant.configure("2") do |config| | |
|
||
config.vm.provider :google do |google| | ||
google.google_project_id = "YOUR_GOOGLE_CLOUD_PROJECT_ID" | ||
google.google_client_email = "YOUR_SERVICE_ACCOUNT_EMAIL_ADDRESS" | ||
google.google_json_key_location = "/path/to/your/private-key.json" | ||
end | ||
end | ||
|
@@ -249,7 +245,6 @@ Vagrant.configure("2") do |config| | |
|
||
config.vm.provider :google do |google| | ||
google.google_project_id = "YOUR_GOOGLE_CLOUD_PROJECT_ID" | ||
google.google_client_email = "YOUR_SERVICE_ACCOUNT_EMAIL_ADDRESS" | ||
google.google_json_key_location = "/path/to/your/private-key.json" | ||
|
||
# Make sure to set this to trigger the zone_config | ||
|
@@ -320,7 +315,6 @@ Before you start acceptance tests, you'll need to set the authentication | |
shell variables accordingly: | ||
|
||
```sh | ||
export GOOGLE_CLIENT_EMAIL="[email protected]" | ||
export GOOGLE_PROJECT_ID="your-google-cloud-project-id" | ||
export GOOGLE_JSON_KEY_LOCATION="/full/path/to/your/private-key.json" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters