Skip to content

Commit

Permalink
Docs - Add bytes option for Windows MDM config (#13933)
Browse files Browse the repository at this point in the history
  • Loading branch information
ireedy committed Sep 25, 2023
1 parent 56e5a97 commit 9ec5aae
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/Configuration/fleet-server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2898,6 +2898,38 @@ The duration between DEP device syncing (fetching and setting of DEP profiles).
mdm:
apple_dep_sync_periodicity: 10m
```
##### mdm.windows_wstep_identity_cert_bytes
> Windows MDM features are not ready for production and are currently in development. These features are disabled by default.
The content of the Windows WSTEP identity certificate. An X.509 certificate, PEM-encoded.
- Default value: ""
- Environment variable: `FLEET_MDM_WINDOWS_WSTEP_IDENTITY_CERT_BYTES`
- Config file format:
```
mdm:
windows_wstep_identity_cert_bytes: |
-----BEGIN CERTIFICATE-----
... PEM-encoded content ...
-----END CERTIFICATE-----
```



##### mdm.windows_wstep_identity_key_bytes
> Windows MDM features are not ready for production and are currently in development. These features are disabled by default.
The content of the Windows WSTEP identity key. An RSA private key, PEM-encoded.
- Default value: ""
- Environment variable: `FLEET_MDM_WINDOWS_WSTEP_IDENTITY_KEY_BYTES`
- Config file format:
```
mdm:
windows_wstep_identity_key_bytes: |
-----BEGIN RSA PRIVATE KEY-----
... PEM-encoded content ...
-----END RSA PRIVATE KEY-----
```


## Managing osquery configurations

Expand Down

0 comments on commit 9ec5aae

Please sign in to comment.