Skip to content

Commit

Permalink
fix: Update resources variable description
Browse files Browse the repository at this point in the history
  • Loading branch information
orfeas-k committed Sep 18, 2024
1 parent b3e1f0c commit 0e4a483
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The module offers the following configurable inputs:
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
| `resources`| map(number) | Map of charm resources revisions | False |
| `resources`| map(string) | Map of the charm resources | False |
| `revision`| number | Revision number of the charm name | False |

### Outputs
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "model_name" {
}

variable "resources" {
description = "Map of resources revisions"
description = "Map of resources"
type = map(string)
default = null
}
Expand Down

0 comments on commit 0e4a483

Please sign in to comment.