Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/user_guide/targets/target_discovery/http_discovery.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,24 @@ loader:
# values in this file will be overwritten by the ones defined in `vars`
vars-file:
```

#### Targets file format

=== "JSON"
```json
{
"10.10.10.10": {
"username": "admin",
"insecure": true
},
"10.10.10.11": {
"username": "admin",
},
"10.10.10.12": {},
"10.10.10.13": {},
"10.10.10.14": {}
}
```

Just like the targets in the main configuration file, the missing configuration fields get filled with the global flags,
the ENV variables first, the config file main section next and then the default values.
Loading