AWSDataLifecycleManagerSSMFullAccess
Description: Provides Amazon Data Lifecycle Manager permission to perform the Systems Manager actions required to run pre and post scripts on all Amazon EC2 instances.
AWSDataLifecycleManagerSSMFullAccess
is an AWS managed policy.
Using this policy
You can attach AWSDataLifecycleManagerSSMFullAccess
to your users, groups, and roles.
Policy details
-
Type: Service role policy
-
Creation time: October 31, 2023, 20:29 UTC
-
Edited time: November 16, 2023, 22:31 UTC
-
ARN:
arn:aws:iam::aws:policy/service-role/AWSDataLifecycleManagerSSMFullAccess
Policy version
Policy version: v2 (default)
The policy's default version is the version that defines the permissions for the policy. When a user or role with the policy makes a request to access an AWS resource, AWS checks the default version of the policy to determine whether to allow the request.
JSON policy document
{ "Version" : "2012-10-17", "Statement" : [ { "Sid" : "AllowSSMReadOnlyAccess", "Effect" : "Allow", "Action" : [ "ssm:GetCommandInvocation", "ssm:ListCommands", "ssm:DescribeInstanceInformation" ], "Resource" : "*" }, { "Sid" : "AllowTaggedSSMDocumentsOnly", "Effect" : "Allow", "Action" : [ "ssm:SendCommand", "ssm:DescribeDocument", "ssm:GetDocument" ], "Resource" : [ "arn:aws:ssm:*:*:document/*" ], "Condition" : { "StringEquals" : { "aws:ResourceTag/DLMScriptsAccess" : "true" } } }, { "Sid" : "AllowSpecificAWSOwnedSSMDocuments", "Effect" : "Allow", "Action" : [ "ssm:SendCommand", "ssm:DescribeDocument", "ssm:GetDocument" ], "Resource" : [ "arn:aws:ssm:*:*:document/AWSEC2-CreateVssSnapshot", "arn:aws:ssm:*:*:document/AWSSystemsManagerSAP-CreateDLMSnapshotForSAPHANA" ] }, { "Sid" : "AllowAllEC2Instances", "Effect" : "Allow", "Action" : [ "ssm:SendCommand" ], "Resource" : [ "arn:aws:ec2:*:*:instance/*" ] } ] }