123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- {
- "Version": "2012-10-17",
- "Statement": [
- {
- "Sid": "AllowPassDescribeInstancesRole",
- "Effect": "Allow",
- "Action": [
- "iam:PassRole"
- ],
- "Resource": [
- "arn:aws:iam::*:role/openshift_node_describe_instances_{{ openshift_aws_clusterid }}"
- ]
- },
- {
- "Sid": "AllowDescribeResources",
- "Effect": "Allow",
- "Action": [
- "ec2:DescribeAvailabilityZones",
- "ec2:DescribeImages",
- "ec2:DescribeInstances",
- "ec2:DescribeKeyPairs",
- "ec2:DescribeSecurityGroups",
- "ec2:DescribeVpcs",
- "ec2:DescribeSubnets"
- ],
- "Resource": [
- "*"
- ]
- },
- {
- "Sid": "AllowRunInstances",
- "Effect": "Allow",
- "Action": [
- "ec2:RunInstances"
- ],
- "Resource": [
- "arn:aws:ec2:*:*:image/*",
- "arn:aws:ec2:*:*:subnet/*",
- "arn:aws:ec2:*:*:network-interface/*",
- "arn:aws:ec2:*:*:security-group/*",
- "arn:aws:ec2:*:*:key-pair/*"
- ]
- },
- {
- "Sid": "AllowRunTaggedInstances",
- "Effect": "Allow",
- "Action": [
- "ec2:RunInstances"
- ],
- "Resource": [
- "arn:aws:ec2:*:*:volume/*",
- "arn:aws:ec2:*:*:instance/*"
- ],
- "Condition": {
- "StringEquals": {
- "aws:RequestTag/clusterid": "{{ openshift_aws_clusterid }}"
- },
- "ForAnyValue:StringEquals": {
- "aws:TagKeys": [
- "clusterid"
- ]
- }
- }
- },
- {
- "Sid": "AllowCreateTagsRunInstances",
- "Effect": "Allow",
- "Action": [
- "ec2:CreateTags"
- ],
- "Resource": "arn:aws:ec2:*:*:*/*",
- "Condition": {
- "StringEquals": {
- "ec2:CreateAction": "RunInstances"
- }
- }
- },
- {
- "Sid": "AllowCreateTaggedVolumes",
- "Effect": "Allow",
- "Action": [
- "ec2:CreateVolume"
- ],
- "Resource": [
- "arn:aws:ec2:*:*:volume/*"
- ],
- "Condition": {
- "StringEquals": {
- "aws:RequestTag/clusterid": "{{ openshift_aws_clusterid }}"
- },
- "ForAnyValue:StringEquals": {
- "aws:TagKeys": [
- "clusterid"
- ]
- }
- }
- },
- {
- "Sid": "AllowCreateTagsCreateVolume",
- "Effect": "Allow",
- "Action": [
- "ec2:CreateTags"
- ],
- "Resource": "arn:aws:ec2:*:*:*/*",
- "Condition": {
- "StringEquals": {
- "ec2:CreateAction": "CreateVolume"
- }
- }
- },
- {
- "Sid": "AllowManageTaggedInstances",
- "Effect": "Allow",
- "Action": [
- "ec2:StartInstances",
- "ec2:StopInstances",
- "ec2:TerminateInstances"
- ],
- "Resource": [
- "*"
- ],
- "Condition": {
- "StringEquals": {
- "ec2:ResourceTag/clusterid": "{{ openshift_aws_clusterid }}"
- }
- }
- },
- {
- "Sid": "AllowManageTaggedVolumes",
- "Effect": "Allow",
- "Action": [
- "ec2:DetachVolume",
- "ec2:DeleteVolume",
- "ec2:AttachVolume"
- ],
- "Resource": [
- "*"
- ],
- "Condition": {
- "StringEquals": {
- "ec2:ResourceTag/clusterid": "{{ openshift_aws_clusterid }}"
- }
- }
- }
- ]
- }
|