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_cms_site_monitor" {
source="./modules/alicloud/r/alicloud_cms_site_monitor"# address - (required) is a type of stringaddress=null# alert_ids - (optional) is a type of list of stringalert_ids=[]
# interval - (optional) is a type of numberinterval=null# options_json - (optional) is a type of stringoptions_json=null# task_name - (required) is a type of stringtask_name=null# task_type - (required) is a type of stringtask_type=nullisp_cities=[{
city =null
isp =null
}]
}
resource"alicloud_cms_site_monitor""this" {
# address - (required) is a type of stringaddress=var.address# alert_ids - (optional) is a type of list of stringalert_ids=var.alert_ids# interval - (optional) is a type of numberinterval=var.interval# options_json - (optional) is a type of stringoptions_json=var.options_json# task_name - (required) is a type of stringtask_name=var.task_name# task_type - (required) is a type of stringtask_type=var.task_typedynamic"isp_cities" {
for_each=var.isp_citiescontent {
# city - (required) is a type of stringcity=isp_cities.value["city"]
# isp - (required) is a type of stringisp=isp_cities.value["isp"]
}
}
}