AWS Fundamentals Logo
AWS Fundamentals
AWS::EKS::FargateProfile

EKS FargateProfile

Resource Schema for AWS::EKS::FargateProfile

Properties

6 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
ClusterName
string
RequiredCreate-only
PodExecutionRoleArn
string
RequiredCreate-only
Selectors
Array<Selector>
RequiredCreate-only
FargateProfileName
string
Create-only
Subnets
Array<string>
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::EKS::FargateProfile

Resources:
  MyResource:
    Type: AWS::EKS::FargateProfile
    Properties:
      ClusterName: "my-clustername"
      PodExecutionRoleArn: "arn:aws:service:region:account:resource"
      Selectors: []
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

eks:CreateFargateProfileeks:DescribeFargateProfileiam:GetRoleiam:PassRoleiam:CreateServiceLinkedRoleeks:TagResource

read

eks:DescribeFargateProfile

delete

eks:DeleteFargateProfileeks:DescribeFargateProfile

list

eks:ListFargateProfiles

update

eks:DescribeFargateProfileeks:TagResourceeks:UntagResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceEKS
Properties7
Required3
TaggingSupported
Primary IDClusterName

Supported Operations

CreateReadDeleteListUpdate

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ClusterNameFargateProfileNamePodExecutionRoleArnSubnetsSelectors

External Links