2 min read
Storing the terraform state into a S3 bucket with dynamoDB for locking has become the de facto standard for being able to share the state across an organization. Nevertheless, there are interesting alternatives: We can use a Kubernetes Secret
19/04/2022
Read more...4 min read
Since MinIO is an object storage server that implements the same public API as Amazon S3, can it be used to store terraform's state?
15/06/2021
Read more...2 min read
When using a remote terraform state with S3, it is recomended to use a dynamoDB table for:
For example:
terraform {
backend "s3" {
bucket = "infra-tfstate"
key = "jenkins/terraform.tfstate"
region = "eu-west-1"
dynamodb_table = "terraform_locks"
}
}
08/04/2021
Read more...