Skip to content

Commit 4884f49

Browse files
author
James Crowley
committed
fix issue with IAM constantly changing #patch
1 parent 79ba469 commit 4884f49

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ The default SSM Parameter format used by this module is the following:
180180
]
181181
```
182182

183-
You can append to this array by adding values to `var.additional_ssm_params`.
183+
You can append to this array by adding values to `var.additional_ssm_params`.
184184

185185
## Development
186186

@@ -208,7 +208,7 @@ For Example
208208
```sh
209209
git commit -m "your commit message #major"
210210
```
211-
By specifying this , it will bump the version and if you dont specify this in your commit message then by default it will consider patch and will bump that accordingly
211+
By specifying this , it will bump the version and if you don't specify this in your commit message then by default it will consider patch and will bump that accordingly
212212

213213
### Tests
214214
- Tests are available in `test` directory

iam.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ data "aws_iam_policy_document" "assume" {
1313
}
1414

1515
resource "aws_iam_role" "execution" {
16-
name_prefix = "${local.cluster_name}-execution-"
16+
name = "${local.cluster_name}-execution"
1717
assume_role_policy = data.aws_iam_policy_document.assume.json
1818

1919
tags = merge(var.tags, tomap({
20-
NamePrefix = "${local.cluster_name}-execution-"
20+
Name = "${local.cluster_name}-execution"
2121
}))
2222
}
2323

0 commit comments

Comments
 (0)