PingAuthorize

Setting up an Amazon S3 deployment package store

Follow these procedures to create and configure an Amazon Simple Storage Service (S3) bucket that you can publish deployment packages to from the Policy Editor for consumption by PingAuthorize Server.

See Using the Deployment Manager for the steps you need to complete for an end-to-end deployment package store configuration in embedded policy decision point (PDP) mode.

Creating an S3 bucket

About this task

To store your deployment packages, create a new S3 bucket in the S3 dashboard of Amazon Web Services (AWS) Management Console.

Steps

  1. In the AWS Management Console, on the S3 dashboard, go to Buckets and click Create bucket.

    Screen capture of the AWS S3 Buckets page, with the
  2. Configure the bucket.

    Learn more in Creating a bucket in the Amazon documentation.

Configuring the IAM user policy

About this task

To manage your deployment package store, configure a new identity and access management (IAM) policy in the IAM dashboard of AWS Management Console.

Steps

  1. In the AWS Management Console, on the IAM dashboard, go to Access Management → Policies and click Create policy.

    Screen capture of the Policies page with the Create policy button in the IAM dashboard of AWS Management Console
  2. In the Policy editor wizard, select the JSON tab and enter these permissions:

    Example:

    {
        "Version": "<policy_creation_date>",
        "Statement": [
            {
                "Effect": "Allow",
                "Action": [
                    "s3:PutObject",
                    "s3:GetObject",
                    "s3:ListBucket"
                ],
                "Resource": "*"
            }
        ]
    }

    You can manage S3 bucket access in multiple ways, including IAM policies, S3 policies, or S3 access control lists (ACLs). We provide a working IAM policy example, but you should be aware of current AWS best practices, industry best practices, and your organization’s conventions when configuring S3 bucket access.

    Replace the asterisk wildcard character to restrict the access scope of the previous policy.

  3. Complete the Create policy wizard according to your organization’s specifications.

  4. On the Review and create confirmation page, review your configurations and click Create policy to create the IAM user policy.

Configuring the IAM user

About this task

To publish to your AWS deployment package store from the Policy Editor, configure a new IAM user to access the S3 bucket in accordance with the policy that you created in Configuring the IAM user policy.

Steps

  1. In the AWS Management Console, on to the IAM dashboard, go to Access Management → Users and click Create user.

Screen capture of the Users page with the Add users button in the IAM dashboard of AWS Management Console
  1. Define a username and click Next.

  2. On the Set permissions page, select Attach policies directly, and then select the policy you created in Configuring the IAM user policy.

    1. Optional: Select Create policy to configure a different user policy.

  3. On the Review and create confirmation page, review your configurations and click Create user to create the IAM user.

  4. Optional: Attach user attribute tags.

  5. On the Users page, search for and click on the newly created user.

  6. On the Security credentials tab, in the Access keys section, click Create access key.

  7. Click Application running outside AWS. Click Next.

  8. Optional: In the Description tag value field, enter a description for the access key and click Create access key.

  9. Copy both the Access key ID and Secret access key values to a secure location. Click Done.

    These values will be used when configuring connections to the Policy Editor and PingAuthorize server.

    You cannot recover these credentials at a later time.