AWS Fundamentals Logo
AWS Fundamentals
AWS::SSO::Application

SSO Application

Resource Type definition for Identity Center (SSO) Application

Properties

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

Filter:
PropertyTypeFlags
ApplicationProviderArn
string
RequiredCreate-only
InstanceArn
string
RequiredCreate-only
Name
string
Required
Description
string
PortalOptions
PortalOptionsConfiguration
Status
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ApplicationArnstringThe Application ARN that is returned upon creation of the Identity Center (SSO) Application

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::SSO::Application

Resources:
  MyResource:
    Type: AWS::SSO::Application
    Properties:
      Name: "my-name"
      InstanceArn: "arn:aws:service:region:account:resource"
      ApplicationProviderArn: "arn:aws:service:region:account:resource"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

sso:CreateApplicationsso:DescribeApplicationsso:TagResourcesso:ListTagsForResource

read

sso:DescribeApplicationsso:ListTagsForResource

update

sso:UpdateApplicationsso:TagResourcesso:UntagResourcesso:ListTagsForResourcesso:DescribeApplication

delete

sso:DeleteApplication

list

sso:ListApplicationssso:ListTagsForResource

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

ServiceSSO
Properties8
Required3
TaggingSupported
Primary IDApplicationArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

InstanceArnApplicationProviderArn

External Links