Skip to content

Commit

Permalink
feat: Include cost explorer to default console services in `iam-read-…
Browse files Browse the repository at this point in the history
…only-policy` module (#186)
  • Loading branch information
Andrey9kin committed Feb 2, 2022
1 parent 22d0021 commit e701139
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/iam-read-only-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ No modules.
| <a name="input_name"></a> [name](#input\_name) | The name of the policy | `string` | `""` | no |
| <a name="input_path"></a> [path](#input\_path) | The path of the policy in IAM | `string` | `"/"` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources. | `map(string)` | `{}` | no |
| <a name="input_web_console_services"></a> [web\_console\_services](#input\_web\_console\_services) | List of web console services to allow | `list(string)` | <pre>[<br> "resource-groups",<br> "tag",<br> "health"<br>]</pre> | no |
| <a name="input_web_console_services"></a> [web\_console\_services](#input\_web\_console\_services) | List of web console services to allow | `list(string)` | <pre>[<br> "resource-groups",<br> "tag",<br> "health",<br> "ce"<br>]</pre> | no |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion modules/iam-read-only-policy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ variable "allow_web_console_services" {
variable "web_console_services" {
description = "List of web console services to allow"
type = list(string)
default = ["resource-groups", "tag", "health"]
default = ["resource-groups", "tag", "health", "ce"]
}

0 comments on commit e701139

Please sign in to comment.