Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#882] Docs - Explain that analytics_id is automatically generated by the application #883

Merged
merged 5 commits into from
Jul 11, 2022
Merged
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
8 changes: 4 additions & 4 deletions docs/fides/docs/installation/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Fidesctl supports two methods of configuration. The first is via a toml file, and the second is via environment variables. They can also be used in tandem, with the environment variables overriding the toml configuration values.

By default the fidesctl CLI doesn't require a config file and will instead leverage the default values. These are very likely to be wrong however so it is recommended to always configure your settings properly.
The fidesctl CLI doesn't require a config file and will instead leverage the default values. These are very likely to be wrong however, so it is recommended to always configure your settings properly.


## Configuration file
Expand All @@ -28,8 +28,8 @@ log_serialization = ""
local_mode = False
server_host = "localhost"
server_port = 8080
server_protocol = "http
analytics_id = "test_analytics_id"
server_protocol = "http"
analytics_id = ""

[user]
encryption_key = "test_encryption_key"
Expand Down Expand Up @@ -60,7 +60,7 @@ To better describe the various configuration options, the following tables descr
| server_host | String | localhost | The hostname of the fidesctl webserver. |
| server_protocol | String | http | The protocol used by the fidesctl webserver. |
| server_port | Integer | | The optional port of the fidesctl webserver. |
| analytics_id | String | "" | A fully anonymized unique identifier for the `fidesctl` CLI instance. |
| analytics_id | String | "" | A fully anonymized unique identifier that is automatically generated by the application and stored in the toml file. |

=== "User Section"

Expand Down