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"mso_schema_site_service_graph_node" {
source="./modules/mso/r/mso_schema_site_service_graph_node"# schema_id - (required) is a type of stringschema_id=null# service_graph_name - (required) is a type of stringservice_graph_name=null# service_node_type - (required) is a type of stringservice_node_type=null# template_name - (required) is a type of stringtemplate_name=nullsite_nodes=[{
node_name =null
site_id =null
tenant_name =null
}]
}
resource"mso_schema_site_service_graph_node""this" {
# schema_id - (required) is a type of stringschema_id=var.schema_id# service_graph_name - (required) is a type of stringservice_graph_name=var.service_graph_name# service_node_type - (required) is a type of stringservice_node_type=var.service_node_type# template_name - (required) is a type of stringtemplate_name=var.template_namedynamic"site_nodes" {
for_each=var.site_nodescontent {
# node_name - (optional) is a type of stringnode_name=site_nodes.value["node_name"]
# site_id - (optional) is a type of stringsite_id=site_nodes.value["site_id"]
# tenant_name - (optional) is a type of stringtenant_name=site_nodes.value["tenant_name"]
}
}
}