This template creates an Amazon EKS cluster with the specified properties. The cluster is named 'Prod' and has a version of '1.20'. It uses the specified IAM role for the control plane and is configured with the provided VPC resources. The cluster has logging enabled for API and audit events. It also includes a tag with key 'key' and value 'val'.

CloudFormation Template

AWSTemplateFormatVersion: '2010-09-09'
Description: Amazon EKS Cluster
Resources:
  EKSCluster:
    Type: 'AWS::EKS::Cluster'
    Properties:
      Name: "Prod"
      Version: undefined
      RoleArn: undefined
      ResourcesVpcConfig:
        SecurityGroupIds:
          - undefined
        SubnetIds:
          - undefined
          - undefined
        EndpointPublicAccess: undefined
        EndpointPrivateAccess: undefined
        PublicAccessCidrs:
          - undefined
      Logging:
        ClusterLogging:
          EnabledTypes:
            - Type: undefined
            - Type: undefined
      Tags:
        - Key: "key"
          Value: "val"