-
Bug
-
Resolution: Unresolved
-
Undefined
-
None
-
None
-
None
-
False
-
-
False
-
-
- IAM policy name needs to be corrected in the Creating an AWS IAM role docs.
- Wrong IAM policy referenced in step 4.
- Here is the documentation link:
https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/configuring_logging/configuring-log-forwarding#creating-an-aws-role_configuring-log-forwarding
- Current status:
i. Create a file, for example `cw-iam-role-policy.json`, with the following content:
- `cw-iam-role-policy.json` is name of the IAM policy.
- But in Step 4, wrong IAM Policy name is reference:
4. Attach the policy to the role by running the following command:
$ aws iam put-role-policy \
--role-name openshift-logger --policy-name cluster-logging-allow \
--policy-document file://cw-role-policy.json
- The correct configuration should look like the following:
aws iam put-role-policy \
--role-name openshift-logger --policy-name cluster-logging-allow \
--policy-document file://cw-iam-role-policy.json