Skip to content

Commit 85fadd0

Browse files
authored
Merge branch 'master' into feat/eks-conditional-policies
2 parents 3e74181 + 9575b7e commit 85fadd0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [4.11.0](https://github.com/terraform-aws-modules/terraform-aws-iam/compare/v4.10.1...v4.11.0) (2022-02-02)
6+
7+
8+
### Features
9+
10+
* Include cost explorer to default console services in `iam-read-only-policy` module ([#186](https://github.com/terraform-aws-modules/terraform-aws-iam/issues/186)) ([e701139](https://github.com/terraform-aws-modules/terraform-aws-iam/commit/e701139d00abfbadf0695b8186001b9786163863))
11+
512
### [4.10.1](https://github.com/terraform-aws-modules/terraform-aws-iam/compare/v4.10.0...v4.10.1) (2022-01-21)
613

714

modules/iam-read-only-policy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ No modules.
4646
| <a name="input_name"></a> [name](#input\_name) | The name of the policy | `string` | `""` | no |
4747
| <a name="input_path"></a> [path](#input\_path) | The path of the policy in IAM | `string` | `"/"` | no |
4848
| <a name="input_tags"></a> [tags](#input\_tags) | A map of tags to add to all resources. | `map(string)` | `{}` | no |
49-
| <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 |
49+
| <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 |
5050

5151
## Outputs
5252

modules/iam-read-only-policy/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ variable "allow_web_console_services" {
6060
variable "web_console_services" {
6161
description = "List of web console services to allow"
6262
type = list(string)
63-
default = ["resource-groups", "tag", "health"]
63+
default = ["resource-groups", "tag", "health", "ce"]
6464
}

0 commit comments

Comments
 (0)