1

我一直在尝试以可以重用事物的方式重组我的 terraform 模块。我在这里试图解决的问题是避免创建新的 tf 模块,其中只有一两个用于特定设置的新属性。

目前的结构:

├── services
│   ├── ec2
│   │   └── terragrunt.hcl
│   ├── ec2_with_fixed_ip
│   │   └── terragrunt.hcl (2)
│   └── terragrunt.hcl (1)
├── tf_moodules
    └── ec2
    │   └── main.tf
    └── ec2_with_fixed_ip
    │   └── main.tf
    └── ec2_with_root_block_device
        └── main.tf

我也一直在考虑使用terraform-aws-ec2-instance git repo 作为我的 terragrunt 脚本中的源。这样,我根本不需要管理 tf 模块。但我不确定我应该如何编写 terragrunt.hcl 以指向 GitHub 存储库并与某个版本挂钩。

这是推荐的做事方式吗?或者有更清洁的方法吗?

terragrunt.hcl 中的内容 (1)

remote_state {
  backend = "s3"

  config = {
    encrypt        = true
    bucket         = "my_bucket"
    key            = "${path_relative_to_include()}/terraform.tfstate"
    region         = "ap-southeast-1"
    dynamodb_table = "tf-locks"
  }
}

terragrunt.hcl 中的内容 (2)

terraform {
  source = "git::https://github.com/terraform-aws-modules/terraform-aws-ec2-instance.git//?ref=v2.15.0"
}

include {
  path = find_in_parent_folders()
}

inputs = {
  ami = "ami-0123456789abcd"
  instance_type = "t3.medium"
  disable_api_termination = false
}

尝试了上述设置,但面临缺少后端“s3”块的问题

4

2 回答 2

0

尝试使用这种方式:

terragrunt = {
    terraform {
    source = "git::git@github.com:org/repo.git//lambda?ref=v0.6.2"
  }
}

    backend "s3" {
      bucket         = "stage-terraform"
      key            = "app/terraform.tfstate"
      region         = "us-east-1"
      encrypt        = false
      dynamodb_table = "stage-terraform-lock-table"
    }
于 2020-09-10T16:29:11.033 回答
0

借助此链接设法了解更多信息

https://github.com/gruntwork-io/terragrunt/issues/311

就我而言,即使我在 terragrunt 根文件中定义了 remote_state 块,运行 terragrunt 命令后,缓存文件夹中也不会生成后端块。

需要做的是包含 generate 块,告诉 terragrunt 将后端块生成到 tf 文件中以解决此问题。

于 2020-09-14T10:10:36.760 回答