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
module"alicloud_network_interfaces" {
source="./modules/alicloud/d/alicloud_network_interfaces"# ids - (optional) is a type of set of stringids=[]
# instance_id - (optional) is a type of stringinstance_id=null# name_regex - (optional) is a type of stringname_regex=null# output_file - (optional) is a type of stringoutput_file=null# private_ip - (optional) is a type of stringprivate_ip=null# resource_group_id - (optional) is a type of stringresource_group_id=null# security_group_id - (optional) is a type of stringsecurity_group_id=null# tags - (optional) is a type of map of stringtags={}
# type - (optional) is a type of stringtype=null# vpc_id - (optional) is a type of stringvpc_id=null# vswitch_id - (optional) is a type of stringvswitch_id=null
}
data"alicloud_network_interfaces""this" {
# ids - (optional) is a type of set of stringids=var.ids# instance_id - (optional) is a type of stringinstance_id=var.instance_id# name_regex - (optional) is a type of stringname_regex=var.name_regex# output_file - (optional) is a type of stringoutput_file=var.output_file# private_ip - (optional) is a type of stringprivate_ip=var.private_ip# resource_group_id - (optional) is a type of stringresource_group_id=var.resource_group_id# security_group_id - (optional) is a type of stringsecurity_group_id=var.security_group_id# tags - (optional) is a type of map of stringtags=var.tags# type - (optional) is a type of stringtype=var.type# vpc_id - (optional) is a type of stringvpc_id=var.vpc_id# vswitch_id - (optional) is a type of stringvswitch_id=var.vswitch_id
}
output"id" {
description="returns a string"value=data.alicloud_network_interfaces.this.id
}
output"ids" {
description="returns a set of string"value=data.alicloud_network_interfaces.this.ids
}
output"interfaces" {
description="returns a list of object"value=data.alicloud_network_interfaces.this.interfaces
}
output"names" {
description="returns a list of string"value=data.alicloud_network_interfaces.this.names
}
output"this" {
value=alicloud_network_interfaces.this
}