AWS Cloud Operations & Migrations Blog

Managing your application metadata using AWS Service Catalog App Registry

Customers need a way to track all of their AWS application resources in one place, and associate metadata like cost center, business unit with those resources centrally. AWS Service Catalog AppRegistry removes the need for complex tag management and allows for customers to aggregate application metadata such as cost center and business units across multiple AWS services into one registry. It also unlocks ITSM or CMDB use cases to be able to track resources ServiceNow, leveraging the AWS Service Management Connector for ServiceNow. Customers I work with would like to be able to track application information across AWS accounts and regions.

In this post I will show you how to manage application metadata across AWS regions and accounts using AWS Service Catalog AppRegistry, AWS Neptune, and a few other AWS services.

Prerequisites­

Background

Here are some of the AWS Service Catalog concepts referenced in this post. For more information, see the Overview of AWS Service Catalog.

  • A product is a blueprint for building the AWS resources necessary to make it available for deployment on AWS, along with the configuration information. Create a product by importing an AWS CloudFormation template, or, in case of AWS Marketplace-based products, by copying the product to the AWS Service Catalog. A product can belong to multiple portfolios.
  • A portfolio is a collection of products, together with the configuration information. Use portfolios to manage user access to specific products. You can grant portfolio access for an AWS Identity and Access Management (IAM) user, IAM group, or IAM role level.
  • A provisioned product is an AWS CloudFormation stack. In other words, the AWS resources that are created. When an end-user launches a product, AWS Service Catalog provisions the product from an AWS CloudFormation stack.
  • Constraints control the way that users can deploy a product. Launch constraints let you specify a role that the AWS Service Catalog can assume to launch a product.

Solution overview

The following diagram maps out the solution architecture.

The architecture diagram shows the components used by the solution. It also shows the steps in which they will be deployed and used.

Figure 1: Solution architecture

Administrator process

The administrator deploys a CloudFormation template that creates resources in the central account. These resources include an AWS Service Catalog product, an Amazon Neptune instance, an Amazon S3 bucket, AWS CloudFormation templates, and more. These components will be used to collect and manage the application information coming from the different accounts and regions.

End-user process

End users use an AWS Service Catalog product to update the central account with application information. End-users can also access the web interface in the central account to view all of the application information.

Configuring an environment

For your convenience, we have supplied an AWS CloudFormation template to automate the creation of prerequisite AWS resources.

Step 1. Download the CloudFormation template and upload this to an Amazon S3 bucket.

  1. Download the content in this zip file
  2. Extract the zip file, and it will create a folder called content
  3. Log in to your AWS account as an administrator that can create AWS resources
  4. Create an Amazon S3 bucket and note this name
  5. Upload the content folder to your newly created S3 bucket
  6. Drill down into the content/scappregistry folder
  7. Choose the checkbox next to scappregistry_setup.json
  8. Right click and copy the Object URL

Step 2. Deploy the CloudFormation template

  1. Navigate to the AWS CloudFormation landing page
  2. Choose Create Stack, and in the drop-down menu choose With new resources (standard)
  3. On the Create stack page, under Specify template choose Amazon S3 URL. In the Amazon S3 URL field, paste the S3 Object URL link that you copied from Step 1.7
  4. Choose Next

    The administrator fills out the inputs to deploy the setup CloudFormation stack

    Figure 2: Stack parameters

  5. In the Specify stack details section, enter the following:
    • Stack Name: scappregsetup
    • SCenduserrole: Enter user/<your-iam-user> (<iam-user> is the user, role, or group who will use the product)
    • SourceBucket: Enter the bucket name that you created, and note it in Step 1.4
    • VPCID: Select a VPC
  6. Select Next
  7. On the Configure stack options page, select Next
  8. On the Review page, select the box next to I acknowledge that AWS CloudFormation might create IAM resources
  9. Select Create Stack
  10. Wait for the Status to change to CREATE_COMPLETE. This will take 3-14 min.

Adding App registry content

Create an AppRegistry application sample using these steps if you have not created an app before. For this sample application, we will create an application called finance01. It will have the following attributes:

Create an AppRegistry application sample using these steps if you have not created an app before. For this sample application, we will create an application called finance01. It will have the following attributes:

  • Environment – dev
  • Costcenter – cc007
  • Support team
    • Developer – Esra Dax
    • QA tester – Harry Kim
    • Operations Lead – Geordi Laforge
  1.  Navigate to the AWS Service Catalog admin page
  2. On the left under AppRegistry, select Applications
  3. Select Create an application
  4. For Application name, enter finance01
  5. For Application Description, enter test application
  6. Select Next
  7. Select Next
  8. Select New attribute group – optional
  9. For Unique attribute group name, enter attgroup001
  10. For JSON, enter
    • {
      “environment”: “dev”,
      “Costcenter”: ” cc007″,
      “SupportDeveloper”: “Esra Dax”,
      “SupportQA tester”: “Harry Kim”,
      “SupportOperationsLead”: “Geordi Laforge”
      }
  11. Select Next
  12. Select Finish

You should now have at least one application.

Copying your application information to the central location

This step will load the App registry application information from this account in this region into the central location.

  1. Navigate to the AWS Service Catalog admin page
  2. Select Products from the top left
  3. Select the SCappregistry product
  4. Select Launch product
  5. Select the Generate name check box for Provisioned product name
  6. Select update for Action
  7. Select Launch product
  8. Wait until the status changes to Available on the top right

View your application via the web interface

  1. Select the Webintrface URL from the PROVISION_PRODUCT output
  2. Select the finance01… from the Select an application list
  3. Select the Select button
  4. Select the orange finance01.. the attgroup001 appears
  5. Select the attgroup001 the application information appears

The web interface shows the application and its attributes in a graphical representation

Figure 3: Graphical report

Loading application data from other accounts and regions

Create the spoke account setup CFT template

  1. Navigate to the AWS Service Catalog admin page
  2. Select Provisioned products from the top left
  3. Select the SCappregistry-… product you deployed earlier
  4. Under Output, right click and copy the URL for Spoketemplate
  5. Share this URL with the spoke account, and go to the next section

Deploying the CFT template in the spoke account or different region

  1. Log in to the spoke account with a role that has the permission to create resources or use the same account, and switch to a different region
  2. Navigate to the AWS CloudFormation console
  3. Navigate to the AWS CloudFormation landing page
  4. Choose Create Stack, and in the drop-down menu choose With new resources (standard)
  5. On the Create stack page, under Specify template, choose Amazon S3 URL. In the Amazon S3 URL field, paste the URL link you copied previous section
  6. Choose Next, and then Choose Next
  7. For Stack name, enter scappregspoke01
  8. For SCenduserRole, enter the user or role that will use Service Catalog to share application information
  9. Select Next
  10. On the Configure stack options page, select Next
  11. On the Review page, check the box next to I acknowledge that AWS CloudFormation might create IAM resources
  12. Select Create stack

Saving Application data to the central account from the spoke account or different region

In the new account or region, create an application, and see the Adding App registry content Section above

  1. Navigate to the AWS Service Catalog admin page
  2. Select Products from the top left
  3. Select the SCappregistry product
  4. Select Launch product
  5. Select the Generate name check box for Provisioned product name
  6. Select update for Action
  7. Select Launch product
  8. Wait until the status changes to Available on the top right
  9. Select the Webinterface URL to view the application information in the central web interface

The output from the provisioned product is displayed, with a link to view the webinterface.

Figure 4: Provisioned product output screen

Cleanup

To avoid ongoing charges in your account, delete the resources that you created. Use the AWS Service Catalog console to delete the AWS Service Catalog product. Choose Provisioned products, and from Actions, choose Terminate. Use the CloudFormation console to delete the stack that you created. For instructions, see Deleting a stack on the AWS CloudFormation console.

Use the Amazon S3 console to delete the bucket contents, and then delete the bucket. For instructions, see Deleting a bucket.

Conclusion

In this post, you learned how you can use the AWS Service Catalog App registry to manage, track, and display your applications and their metadata.

About the authors

Kenneth Walsh

Kenneth Walsh

Kenneth Walsh is a New York-based Solutions Architect whose focus is AWS Marketplace. Kenneth is passionate about cloud computing and loves being a trusted advisor for his customers. When he’s not working with customers on their journey to the cloud, he enjoys cooking, audio books, movies, and spending time with his family and dog.

Devi Paulvannan Chapman

Devi Paulvannan Chapman is a Solutions Architect with AWS. She enjoys working with customers to provide architectural and technical guidance on their cloud journey. Outside of work, she loves spending time outdoors rock climbing, hiking, and traveling to new places.