I need to grant Full access via AWS IAM SSO Inline policy (Permission set) to particular EC2 Instance alone, the users should not be able to view other instances existing already, they can work on that particular instance alone only.
Tried this one but didn't get any forseeable results
{ "Version": "2012-10-17", "Statement": [ { "Sid": "statement1", "Effect": "Allow", "Action": [ "ec2:*" ], "Resource": [ "arn:aws:ec2:region::instance/i-123456EXAMPLE", "arn:aws:ec2:region:account-id:instance/i-0598c7d3EXAMPLE" ] } ] }