Skip to content

Instantly share code, notes, and snippets.

@Jojoooo1
Last active October 20, 2023 17:28
Show Gist options
  • Save Jojoooo1/639795f1a16daaa14178bbf389a54712 to your computer and use it in GitHub Desktop.
Save Jojoooo1/639795f1a16daaa14178bbf389a54712 to your computer and use it in GitHub Desktop.
Create a GCS bucket for terraform state
#!/bin/bash
PROJECT_ID="<project-id>"
rand="$(echo $RANDOM)"
gsutil mb -p $PROJECT_ID -l us -b on "gs://tf-state-$rand"
gsutil versioning set on "gs://tf-state-$rand"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment