terraform-provider-azure - terraform 计划返回错误 : Unsupported argument

标签 terraform-provider-azure

我有以下三个文件,如下所示:
main.tf、variables.tf 和 dev.auto.tfvars

来自 的片段主文件

module "sql_vms" {
  source                  = "git::git@github.com:xxxxxxxxxxxx/terraform-modules//azure/"
  rg_name                 = var.resource_group_name
  location                = module.resource_group.external_rg_location
  vnet_name               = var.virtual_network_name
  subnet_name             = var.sql_subnet_name
  app_nsg                 = var.application_nsg
  vm_count                = var.count_vm
  base_hostname           = var.sql_host_basename
  sto_acc_suffix          = var.storage_account_suffix
  vm_size                 = var.virtual_machine_size
  vm_publisher            = var.virtual_machine_image_publisher
  vm_offer                = var.virtual_machine_image_offer
  vm_sku                  = var.virtual_machine_image_sku
  vm_img_version          = var.virtual_machine_image_version
  username                = var.username
  password                = var.password
}

来自 的片段变量.tf
variable "app_subnet_name" {
  type    = string
}

variable "sql_subnet_name" {
  type    = string
}

来自 的片段dev.auto.tfvars
app_subnet_name = "subnet_1"

sql_subnet_name = "subnet_2"

application_nsg = "test_nsg"

但是,我收到如下错误
Error: Unsupported argument

  on main.tf line 7, in module "sql_vms":
   7:   subnet_name    = var.sql_subnet_name

An argument named "subnet_name" is not expected here.


Error: Unsupported argument

  on main.tf line 8, in module "sql_vms":
   8:   app_nsg        = var.application_nsg

An argument named "app_nsg" is not expected here.

我的模块目录结构如下所示
$ ls -R terraform-modules/
terraform-modules/:
aws  azure  gcp

terraform-modules/aws:
alb  ec2-instance-rhel

terraform-modules/aws/alb:

terraform-modules/aws/ec2-instance-rhel:
main.tf

terraform-modules/azure:
compute  resourcegroup  sqlserver

terraform-modules/azure/compute:
main.tf  README.md  variable.tf

terraform-modules/azure/resourcegroup:
data.tf  outputs.tf  variables.tf

terraform-modules/azure/sqlserver:
main.tf  README.md  variables.tf

terraform-modules/gcp:
compute

terraform-modules/gcp/compute:
main.tf

知道这里出了什么问题吗?

最佳答案

如果您从 Terraform 开始,如果您的模块参数引用资源属性而不是变量名称,您将收到错误消息(“ 此处不需要名为“example”的参数 ”),请参阅下面举个例子:
要从模块调用的 Terraform 模块“example_mod.tf”示例:

variable "sg_name" { }   # Usually in a separate file
variable "sg_desc" { }   # called variables.tf

resource "example_resource" "example_name" {
  name        = var.sg_name
  description = var.sg_desc
...
}
正确方法:
module "my_module" {
  source = "./modules/example_mod.tf"

  sg_name = "whatever"  # NOTE the left hand side "sg_name" is the variable name
  sg_desc = "whatever"    
...
}
错误的方式:(给出错误“此处不需要名为“名称”的参数”)
module "my_module" {
  source = "./modules/example_mod.tf"

  name   = "whatever" # WRONG because the left hand side "name" is a resource property
  description = "whatever" # WRONG for the same reason   
...
}

关于terraform-provider-azure - terraform 计划返回错误 : Unsupported argument,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62361263/

相关文章:

terraform - 如何使用 FQDN 访问 AKS 群集

Azure Frontdoor 动态 block 在 Terraform 中不起作用

terraform - 当 Azure 策略要求所有子网上的 NSG 时,如何处理 Terraform 销毁操作?

terraform-provider-azure - 如何使用 Terraform 启用 Application Insights?

azure-devops - 如果已经通过 Terraform 存在,则避免创建新的 Azure Key Vault secret 版本

terraform - 使用 Terraform 进行分层部署

azure - 如何根据变量值运行 terraform 模块?

terraform - 模块的动态嵌套 block

Azure AD 组 - Authorization_RequestDenied - 权限不足,无法完成操作

azure - 如何在 terraform 中使列表参数可选