Terraform 依赖于模块

Posted

技术标签:

【中文标题】Terraform 依赖于模块【英文标题】:Terraform depends_on with modules 【发布时间】:2020-02-05 02:01:36 【问题描述】:

我是 terraform 的新手,我创建了一个关于模块结构的自定义 azure 策略。 每个策略代表一个自定义模块。 我创建的模块之一是为创建的任何新 Azure 资源启用诊断日志。 但是,我需要一个存储帐户。 (在启用诊断设置之前,我如何实施 "depends_on"?或任何其他方法? 我想先创建存储帐户,然后再创建诊断设置模块。 在main.tf(调用所有其他模块的地方)还是在资源(模块)内部?

感谢您的帮助! :)

以下代码代表 main.tf 文件:

//calling the create storage account name

module "createstorageaccount" 

source = "./modules/module_create_storage_account"
    depends_on = [
    "module_enable_diagnostics_logs"
  ]


这个代表创建存储账户模块

resource "azurerm_resource_group" "management" 


  name     = "management-rg"
  location = "West Europe"


resource "azurerm_storage_account" "test" 
  name                     = "diagnostics$azurerm_resource_group.management.name"
  resource_group_name      = "$azurerm_resource_group.management.name"
  location                 = "$azurerm_resource_group.management.location"
  account_tier             = "Standard"
  account_replication_type = "LRS"

  tags = 
    environment = "diagnostics"
  


    depends_on = [
    "module_enable_diagnostics_logs"
  ]

【问题讨论】:

据我所知,depends_on 适用于资源,而不是模块 请参阅medium.com/mineiros/…,了解如何实现更通用的 module_depends_on .. 由于0.13 现在可以拥有depend_on on modules 【参考方案1】:

在大多数情况下,必要的依赖关系只是由于您的引用而自动发生。如果一个资源的配置直接或间接引用另一个资源,Terraform 会自动推断它们之间的依赖关系,而不需要显式的 depends_on

这是因为模块变量和输出也是依赖图中的节点:如果子模块资源引用var.foo,那么它间接依赖于该变量的值所依赖的任何东西。

对于自动依赖检测不足的罕见情况,您仍然可以利用模块变量和输出是依赖关系图中的节点这一事实来创建间接显式依赖关系,如下所示:

variable "storage_account_depends_on" 
  # the value doesn't matter; we're just using this variable
  # to propagate dependencies.
  type    = any
  default = []


resource "azurerm_storage_account" "test" 
  name                     = "diagnostics$azurerm_resource_group.management.name"
  resource_group_name      = "$azurerm_resource_group.management.name"
  location                 = "$azurerm_resource_group.management.location"
  account_tier             = "Standard"
  account_replication_type = "LRS"

  tags = 
    environment = "diagnostics"
  

  # This resource depends on whatever the variable
  # depends on, indirectly. This is the same
  # as using var.storage_account_depends_on in
  # an expression above, but for situations where
  # we don't actually need the value.
  depends_on = [var.storage_account_depends_on]

当您调用此模块时,您可以将storage_account_depends_on 设置为任何包含要确保在存储帐户之前创建的对象的表达式:

module "diagnostic_logs" 
  source = "./modules/diagnostic_logs"


module "storage_account" 
  source = "./modules/storage_account"

  storage_account_depends_on = [module.diagnostic_logs.logging]

然后在你的diagnostic_logs模块中你可以为logging输出配置间接依赖,完成模块之间的依赖链接:

output "logging" 
  # Again, the value is not important because we're just
  # using this for its dependencies.
  value = 

  # Anything that refers to this output must wait until
  # the actions for azurerm_monitor_diagnostic_setting.example
  # to have completed first.
  depends_on = [azurerm_monitor_diagnostic_setting.example]

如果您的关系可以通过传递实际的 来表达,例如通过包含 id 的输出,我建议首选这种方法,因为它会导致配置更容易跟随。但在资源之间存在无法建模为数据流的关系的极少数情况下,您也可以使用输出和变量来传播模块之间的显式依赖关系。

【讨论】:

非常感谢您的详细解答!! 以上代码将在 storage_account 之前创建 diagnostic_logs。请注意!【参考方案2】:

Terraform 13 现在支持模块依赖项,目前处于发布候选阶段。

resource "aws_iam_policy_attachment" "example" 
  name       = "example"
  roles      = [aws_iam_role.example.name]
  policy_arn = aws_iam_policy.example.arn


module "uses-role" 
  # ...

  depends_on = [aws_iam_policy_attachment.example]

【讨论】:

请注意,仍然希望使用每个资源依赖项来进行细粒度的并行资源处理,而不是阻塞整个模块处理,而并非所有模块资源都依赖于某些外部资源

以上是关于Terraform 依赖于模块的主要内容,如果未能解决你的问题,请参考以下文章

Terraform - 模块之间的依赖关系

Terraform 依赖于 aws_iam_policy

Terraform 模块依赖项不起作用(版本 0.12)

Terraform 模块依赖关系破坏了 template_file

如何使 Terraform 提供程序依赖于正在创建的资源

Terraform:如何安装多个版本的提供程序插件? [复制]