Skip to content

Instantly share code, notes, and snippets.

@greencamp20552
Last active July 11, 2023 09:43
Show Gist options
  • Select an option

  • Save greencamp20552/7055da6e1edd53547d3e32405e195d65 to your computer and use it in GitHub Desktop.

Select an option

Save greencamp20552/7055da6e1edd53547d3e32405e195d65 to your computer and use it in GitHub Desktop.
aws-architect-professional
def attach_group_policy(policy_arn, group_name):
iam = boto3.client("iam")
response = iam.attach_group_policy(
GroupName=group_name,
PolicyArn=policy_arn
)
print(response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment