You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 14, 2020. It is now read-only.
Terraform v0.12.12
zabbix_provider - 0.0.4
Issue: during terraform plan, get error: Error: Unsupported argument on ../../modules/vm_base/main.tf line 125, in resource "zabbix_host" "this": 125: interfaces
An argument named "interfaces" is not expected here. Did you mean to define a block of type "interfaces"?
main.tf: resource "zabbix_host" "this" { count = "${var.vm_count}" host = "${element(vsphere_virtual_machine.this.*.name, count.index)}" interfaces = [{ main = true }] groups = [ "${zabbix_host_group.this}"] templates = ["Template OS Linux v2"] depends_on = [vsphere_virtual_machine.this] }
The text was updated successfully, but these errors were encountered:
Terraform v0.12.12
zabbix_provider - 0.0.4
Issue: during
terraform plan
, get error:Error: Unsupported argument
on ../../modules/vm_base/main.tf line 125, in resource "zabbix_host" "this": 125: interfaces
An argument named "interfaces" is not expected here. Did you mean to define a block of type "interfaces"?
main.tf:
resource "zabbix_host" "this" { count = "${var.vm_count}" host = "${element(vsphere_virtual_machine.this.*.name, count.index)}" interfaces = [{ main = true }] groups = [ "${zabbix_host_group.this}"] templates = ["Template OS Linux v2"] depends_on = [vsphere_virtual_machine.this] }
The text was updated successfully, but these errors were encountered: