Skip to content

Commit

Permalink
Update README.md and example
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro-Ostapenko-97 committed Aug 17, 2021
1 parent 3dee9bc commit ec1762b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Name | Description | Type | Default | Example | Required
--- | --- | --- | --- |--- |---
storage_account_name | The Microsoft Azure storage account name to be used | `string` | `null` | `aks-application-logs` | no
storage_account_access_key | The Microsoft Azure storage account access key to use | `string` | `null` | `sEcRetKeY` | no
container_name | Name of the blob container used to store chunks | `string` | `null` | `my-app-logs` | no
container_name | Name of the blob container used to store chunks. This container must be created before running cortex. | `string` | `null` | `my-app-logs` | no
### ***Local***
Name | Description | Type | Default | Example | Required
--- | --- | --- | --- |--- |---
Expand Down
1 change: 1 addition & 0 deletions example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ module "azure_loki_stack" {
provider_type = "azure"
storage_account_name = "kuberneteslogging"
storage_account_access_key = "super-secret-key"
container_name = "logs"
}

# Local Loki Logging
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ variable "container_name" {
description = "Name of the blob container used to store chunks. This container must be created before running cortex."
default = null
}
## Local storage
variable "persistent_volume_name" {
description = "Name of persistant volume"
default = null
Expand Down

0 comments on commit ec1762b

Please sign in to comment.