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
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform CLI and Terraform IBM Provider Version
Terraform v1.1.8
on darwin_amd64```
### Affected Resource(s)<!--- Please list the affected resources and data sources.--->* ibm_is_bare_metal_server network
### Terraform Configuration Files<!--- Information about code formatting: https://help.github.com/articles/basic-writing-and-formatting-syntax/#quoting-code --->
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
```hcl
resource"ibm_is_bare_metal_server""esx_host" {
count=var.vmw_host_countprofile=var.vmw_host_profileuser_data=data.template_file.userdata[count.index].renderedname="${local.hostname}-${format("%03s", count.index)}"resource_group=var.vmw_resource_group_idimage=var.vmw_esx_imagezone=var.vmw_vpc_zonekeys=[var.vmw_key]
primary_network_interface {
subnet=var.vmw_host_subnetallowed_vlans=[100, 200, 300, 400, 700, 710]
name="pci-nic-vmnic0-uplink1"#name = "pci-nic-vmnic0-vmk0"security_groups=[var.vmw_sg_mgmt]
enable_infrastructure_nat=true
}
network_interfaces {
# pci2subnet=var.vmw_host_subnetallowed_vlans=[100, 200, 300, 400, 700, 710]
# allowed_vlans = [10]name="pci-nic-vmnic0-uplink2"security_groups=[var.vmw_sg_mgmt]
enable_infrastructure_nat=true# }
}
vpc=var.vmw_vpctimeouts {
create="30m"delete="30m"
}
}
Debug Output
Panic Output
Expected Behavior
Network interfaces should be processed and added to the bare-metal server, like it does on the CLI / API
Actual Behavior
network interfaces are ignored by terraform and not submitted to the API
Steps to Reproduce
terraform apply
Important Factoids
References
#0000
The text was updated successfully, but these errors were encountered:
Community Note
Terraform CLI and Terraform IBM Provider Version
Debug Output
Panic Output
Expected Behavior
Network interfaces should be processed and added to the bare-metal server, like it does on the CLI / API
Actual Behavior
network interfaces are ignored by terraform and not submitted to the API
Steps to Reproduce
terraform apply
Important Factoids
References
The text was updated successfully, but these errors were encountered: