LexH
LexH

Reputation: 1147

How to change the description of custom AWS IAM policy?

I have a custom policy in AWS IAM. I would like to change its description, not its name. How can I do that?

I've tried editing the policy, but that only changes how it works (e.g., assigning privileges). I don't see how to change the description.

Upvotes: 17

Views: 3711

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 269284

From CreatePolicy documentation:

Description: A friendly description of the policy.

The policy description is immutable. After a value is assigned, it cannot be changed.

Therefore, you'll need to delete it and recreate it to modify the Description.

Upvotes: 22

Related Questions