rancher / terraform-controller

Use K8s to Run Terraform
Apache License 2.0
291 stars 46 forks source link

Add terraform statefile management to CLI #13

Open cloudnautique opened 5 years ago

cloudnautique commented 5 years ago

As a user, I should be able to

  1. use an executions statefile as a remote.
  2. Download the statefile
  3. import a statefile
k0da commented 3 years ago

Not sure this is still relevant. As backend merged upstream, this can be easily done by terraform itself.

terraform {
  backend "kubernetes" {
    secret_suffix = "<exec-name>"
    namespace = "terraform-controller"
    in_cluster_config = false
  }
}