terraform-google-modules / terraform-google-cloud-datastore

Manages Datastore
https://registry.terraform.io/modules/terraform-google-modules/cloud-datastore/google
Apache License 2.0
22 stars 33 forks source link
cft-terraform databases

Module for Google Cloud Datastore

This modules helps you to manage Google Cloud Datastore.

Currently, it supports index creation by shelling out to gcloud.

Compatibility

This module is meant for use with Terraform 0.13. If you haven't upgraded and need a Terraform 0.12.x-compatible version of this module, the last released version intended for Terraform 0.12.x is v1.0.0.

Usage

module "datastore" {
  source      = "terraform-google-modules/cloud-datastore/google"
  credentials = "sa-key.json"
  project     = "my-project-id"
  indexes     = "${file("index.yaml")}"
}

Module Inputs

Argument Reference:

Inputs

Name Description Type Default Required
indexes The contents of a index.yaml file, to apply indexes from string n/a yes
project The project id string n/a yes

Outputs

No outputs.