Skip to content

Commit

Permalink
Merge pull request #44 from dylanmpeck/master
Browse files Browse the repository at this point in the history
remove 'v' prefix in google provider version
  • Loading branch information
kaariger authored May 19, 2021
2 parents 2ddbe90 + d047604 commit f2dd959
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions scripts/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,17 @@ check_dependency_installed terraform
echo ""
echo "Validating Debian VM Webapp..."
SERVER_ADDRESS=$(cd "$ROOT/terraform" && terraform output web_server_address)
# Remove surrounding quotes from URL
SERVER_ADDRESS="${SERVER_ADDRESS%\"}"
SERVER_ADDRESS="${SERVER_ADDRESS#\"}"
validate_deployment "$SERVER_ADDRESS"

echo ""
echo "Validating Container OS Webapp..."
SERVER_ADDRESS=$(cd "$ROOT/terraform" && terraform output cos_server_address)
# Remove surrounding quotes from URL
SERVER_ADDRESS="${SERVER_ADDRESS%\"}"
SERVER_ADDRESS="${SERVER_ADDRESS#\"}"
validate_deployment "$SERVER_ADDRESS"

echo ""
Expand Down
2 changes: 1 addition & 1 deletion terraform/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.
// develop this example.

provider "google" {
version = "~> v2.11.0"
version = "~> 2.11.0"
}

provider "null" {
Expand Down

0 comments on commit f2dd959

Please sign in to comment.