Civo Object Store as a Terraform Backend
Recently, Civo Cloud launched an object store that is object Storage and S3-compatible. Read more about it here: https://www.civo.com/learn/using-civo-object-stores In my Cloud Heist - Civo series on youtube, one of the viewers asked how we can store terraform state in the bucket, similar to how we do in AWS space. Here’s the solution for the same, Let’s create the object store resource "civo_object_store" "statefile" { name = "state" max_size_gb = 500 region = "LON1" } Now apply this config....