Cfn Identity Provider Save

A trivially simple stack to create an AWS IAM SAML provider via CloudFormation

Project README

A simple SAML Identity Provider (IdP) provisioner

This CloudFormation template creates a SAML identity provider in Amazon Web Services' (AWS) Identity and Access Management (IAM) configuration.

In order to use it, you'll need:

  • an AWS account
  • rights within that AWS account to create, update, and delete:
    • CloudFormation stacks
    • IAM Roles and Policies
    • Lambda functions
    • Identity Providers
  • a SAML Identity Provider (IdP)
  • the Federation metadata (an XML document) from the Identity Provider (how to get this differs for every IdP)

Preparing metadata

  1. Download metadata from your IdP
  2. Make it all be on one line and escape the double-quote (") character: tr -d '\n' metadata.xml | sed -e 's/"/\"/g' > out.xml
  3. Copy the out.xml into the ParameterValue field of the params.json

Configuration

You can set the name of your identity provider via the SamlProviderName parameter to the stack; this can be configured in the params.json. It defaults to MyProvider

Returned Values from the Custom Resource

The ProviderCreator custom resource returns the ARN of the SAML provider as its physical resource ID.

You can simply Ref the custom resource to use the SAML provider ARN.

For example:

...

  TrustingIdp:
    Type: AWS::IAM::Role
    Properties:
      AssumeRolePolicyDocument:
        Version: '2012-10-17'
        Statement:
          - Effect: Allow
            Principal:
              Federated: !Ref IdentityProvider
            Action: sts:AssumeRoleWithSAML
            Condition:
              StringEquals:
                "SAML:aud": "https://signin.aws.amazon.com/saml"
...

Updating the stack

The stack can be updated, though the only changes you can make to the Identity Provider is to change the SAML Metadata document, in case you need to update the trust relationship.

Open Source Agenda is not affiliated with "Cfn Identity Provider" Project. README Source: cevoaustralia/cfn-identity-provider

Open Source Agenda Badge

Open Source Agenda Rating