No release in over a year
Terraspace Google Cloud Plugin
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Terraspace Google Cloud Plugin

Google Cloud support for terraspace.

Installation

Add this line to your application's Gemfile:

gem 'terraspace_plugin_google'

Configure

Optionally configure the plugin. Here's an example google.rb for your terraspace project.

config/plugins/google.rb

TerraspacePluginGoogle.configure do |config|
  config.auto_create = true # set to false to completely disable auto creation
  config.gcs.versioning = true
end

By default:

The settings generally only apply if the gcs bucket does not yet exist yet and is created for the first time.

Versioning

To confirm that the GCS bucket has versioning enabled:

$ gsutil versioning get gs://my-bucket
gs://my-bucket: Enabled
$

Here's also how you list multiple versions of an object.

$ gsutil ls gs://my-bucket
gs://my-bucket/us-central1/
$ echo hello1 > hello.txt
$ gsutil cp hello.txt gs://my-bucket/hello.txt
$ echo hello2 > hello.txt
$ gsutil cp hello.txt gs://my-bucket/hello.txt
$ gsutil ls gs://my-bucket/hello.txt
gs://my-bucket/hello.txt
$ gsutil ls -a gs://my-bucket/hello.txt
gs://my-bucket/hello.txt#1590950916098856
gs://my-bucket/hello.txt#1590950925738834
$ gsutil cp gs://my-bucket/hello.txt#1590950916098856 hello1.txt

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/boltops-tools/terraspace_plugin_google.