-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* managed arns --> attachments * Update iam-roles.tf
- Loading branch information
George Scott
authored
Jul 13, 2023
1 parent
10b0fd0
commit 701b886
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
resource "aws_iam_role" "node" { | ||
name = "${var.namespace}-node" | ||
assume_role_policy = data.aws_iam_policy_document.node_assume.json | ||
|
||
managed_policy_arns = [] | ||
|
||
// todo: refactor --> v1.16.3 | ||
inline_policy {} | ||
} | ||
|
||
|