Difference between revisions of "Amazon Cloudformation EKS cluster role"

From wikieduonline
Jump to navigation Jump to search
Line 6: Line 6:
 
   
 
   
 
   
 
   
  Resources:  
+
  [[Resources:]]
 
   
 
   
 
   MyeksClusterRole:
 
   MyeksClusterRole:
Line 23: Line 23:
 
         - [[arn:aws:iam::aws:policy/AmazonEKSClusterPolicy]]
 
         - [[arn:aws:iam::aws:policy/AmazonEKSClusterPolicy]]
 
   
 
   
  Outputs:
+
  [[Outputs:]]
 
   
 
   
 
   RoleArn:
 
   RoleArn:

Revision as of 19:25, 12 November 2021

https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html#create-service-role

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Amazon EKS Cluster Role'


Resources: 

  MyeksClusterRole:
    Type: AWS::IAM::Role
    Properties:
      AssumeRolePolicyDocument:
        Version: '2012-10-17'
        Statement:
        - Effect: Allow
          Principal:
            Service:
            - eks.amazonaws.com
          Action:
          - sts:AssumeRole
      ManagedPolicyArns:
        - arn:aws:iam::aws:policy/AmazonEKSClusterPolicy

Outputs:

  RoleArn:
    Description: The role that Amazon EKS will use to create AWS resources for Kubernetes clusters
    Value: !GetAtt MyeksClusterRole.Arn
    Export:
      Name: !Sub "${AWS::StackName}-RoleArn"

Related

See also

Advertising: