移民 用于GitOps的Terraform状态迁移工具。 产品特点 GitOps友好:在HCL中编写Terraform状态mv / rm / import命令,计划并应用它。 Monorepo样式支持:将资源移动到其他tfstate以轻松拆分和合并以进行重构。 空运行迁移:使用临时的本地tfstate模拟状态操作,并检查在迁移后terraform计划是否没有更改,而不更新远程tfstate。 迁移历史记录:跟踪已应用了哪些迁移,并依次应用所有未应用的迁移。 您可以以声明方式应用terraform状态操作。 简而言之,编写以下迁移文件并将其另存为state_mv.hcl : migration " state " " test " { dir = " dir1 " actions = [ " mv aws_security_group.foo aws_security_group.foo2 " , " mv aws_security_group.bar aws_security_group.bar2 " , ] } 然后,将其应用: $ tf
2021-02-03 14:05:06 105KB go terraform tfstate gitops
1