diff --git a/docs/fides/docs/installation/configuration.md b/docs/fides/docs/installation/configuration.md index f5633d8cb10..c80e8fd4789 100644 --- a/docs/fides/docs/installation/configuration.md +++ b/docs/fides/docs/installation/configuration.md @@ -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 @@ -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" @@ -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"