terraform-ark (DEPRECATED)
This project is no longer maintained. The original tool is renamed to Veleroand they improved they way to install it in your cluster.
Terraform module to create custom roles, service account and bucket binding for Heptio Ark disaster recovery tool.
Usage example for GCP
Create main.tf
file with this content.
provider "google" {
project = "my-project"
region = "europe-west1-b"
credentials = "${file("account.json")}"
}
module "ark_gcp" {
source = "git::https://github.com/marctc/terraform-velero.git//gcp"
project = "my-project"
bucket_name = "velero-backup-bucket"
}
Then run:
$ terraform init
$ terraform plan
$ terraform apply