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"fortios_system_apiuser_setting" {
source="./modules/fortios/r/fortios_system_apiuser_setting"# accprofile - (required) is a type of stringaccprofile=null# comments - (optional) is a type of stringcomments=null# name - (required) is a type of stringname=null# vdom - (required) is a type of list of stringvdom=[]
trusthost=[{
ipv4_trusthost =null
type =null
}]
}
resource"fortios_system_apiuser_setting""this" {
# accprofile - (required) is a type of stringaccprofile=var.accprofile# comments - (optional) is a type of stringcomments=var.comments# name - (required) is a type of stringname=var.name# vdom - (required) is a type of list of stringvdom=var.vdomdynamic"trusthost" {
for_each=var.trusthostcontent {
# ipv4_trusthost - (required) is a type of stringipv4_trusthost=trusthost.value["ipv4_trusthost"]
# type - (required) is a type of stringtype=trusthost.value["type"]
}
}
}