Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 893 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 893 Bytes

terraform-google-acme-bucket

Terraform module for building out storage bucket on Google Cloud Services

It builds a storage bucket to hold Terraform state

Use

Call it as a module from another Terraform repository.

module "bucket" {
  source = "terraform-google-acme-bucket"

  bucket_name = "Your bucket name"
}

Testing

To build, validate and then destroy run these commands below:

bundle exec kitchen converge
bundle exec kitchen verify
bundle exec kitchen destroy

Prerequisites

  • Ruby 2.2 or greater
  • Terraform >= 0.10.2, < 0.12
  • gcloud command line utility (https://cloud.google.com/sdk/)
  • Google Cloud Project with a service account
  • Download service account credentials to: credentials.json
  • Create a local Kitchen configuration file: kitchen.local.yml, add this content:
driver:
  variables:
    gcloud_project: <project-id>