HashiCorp Terraform is an infrastructure-as-code (IaC) tool that lets you provision and manage cloud infrastructure. Terraform provides plugins called providers that let you interact with cloud providers and other APIs. You can use the Terraform provider for Cloud de Confiance to provision and manage Cloud de Confiance by S3NS resources, including Cloud Storage.
This page introduces you to using Terraform with Cloud Storage, including an introduction to how Terraform works and some resources to help you get started using Terraform with Cloud de Confiance. You'll also find links to Terraform reference docs for Cloud Storage, code examples, and guides for using Terraform to provision Cloud Storage resources.
For instructions on how to get started with Terraform for Cloud de Confiance, see Install and configure Terraform or the Terraform for Cloud de Confiance quickstart.
How Terraform works
Terraform has a declarative and configuration-oriented syntax, which you can use to describe the infrastructure that you want to provision in your Cloud de Confiance project. After you author this configuration in one or more Terraform configuration files, you can use the Terraform CLI to apply this configuration to your Cloud Storage resources.
The following steps explain how Terraform works:
- You describe the infrastructure you want to provision in a Terraform configuration file. You don't need to write code describing how to provision the infrastructure. Terraform provisions the infrastructure for you.
- You run the
terraform plancommand, which evaluates your configuration and generates an execution plan. You can review the plan and make changes as needed. -
You run the
terraform applycommand, which performs the following actions:- It provisions your infrastructure based on your execution plan by invoking the corresponding Cloud Storage APIs in the background.
- It creates a Terraform state file, which is a JSON file that maps the resources in your configuration file to the resources in the real-world infrastructure. Terraform uses this file to keep a record of the most recent state of your infrastructure, and to determine when to create, update, and destroy resources.
-
When you run
terraform apply, Terraform uses the mapping in the state file to compare the existing infrastructure to the code, and make updates as necessary:- If a resource object is defined in the configuration file, but doesn't exist in the state file, Terraform creates it.
- If a resource object exists in the state file, but has a different configuration from your configuration file, Terraform updates the resource to match your configuration file.
- If a resource object in the state file matches your configuration file, Terraform leaves the resource unchanged.
Terraform resources for Cloud Storage
Resources are the fundamental elements in the Terraform language. Each resource block describes one or more infrastructure objects, such as virtual networks or compute instances.
The following table lists the Terraform resources available for Cloud Storage:
| Service | Terraform resources | Data sources |
|---|---|---|
|
Cloud Storage Terraform service: |
|
|
|
Storage Intelligence Terraform service: |
||
|
Storage batch operations feature of Storage Intelligence Terraform service: |
- | |
|
Storage Insights feature of Storage Intelligence Terraform service: |
Terraform-based guides for Cloud Storage
The following table lists Terraform-based how-to guides and tutorials for Cloud Storage:
| Guide | Details | |
|---|---|---|
| Quickstart: use Terraform to create a bucket and upload an object | This quickstart shows how to get started with Terraform by creating a Terraform configuration file that provisions a storage bucket and uploads a sample object to the bucket. | |
| Create a bucket | This guide explains how to create a bucket. | |
| Get bucket metadata | This guide explains how to view the metadata of a bucket. | |
| Upload objects | This guide explains how to upload objects to a bucket from your local file system. | |
| Get object metadata | This guide explains how to view the metadata of an object. | |
| Manage object lifecycles | This guide explains how to set the lifecycle configuration for a bucket. | |
| Configure Pub/Sub notifications | This guide explains how to configure your bucket to send notifications about object changes to a Pub/Sub topic. | |
| Create HMAC keys | This guide explains how to create hash-based message authentication code (HMAC) keys for service accounts in your project. | |
| Make data public | This guide explains how to make all objects in a bucket readable to everyone on the public internet. |
Terraform modules and blueprints for Cloud Storage
Modules and blueprints help you automate provisioning and managing of Cloud de Confiance resources at scale. A module is a reusable set of Terraform configuration files that creates a logical abstraction of Terraform resources. A blueprint is a package of deployable and reusable modules, and a policy that implements and documents a specific solution.
The following table lists modules and blueprints related to Cloud Storage:
| Module or blueprint | Details |
|---|---|
terraform-google-cloud-storage |
This module creates one or more Cloud Storage buckets and assigns basic permissions on them to arbitrary users. |