Skip to main content

Web App Tags


A couple of areas that we need to cover before moving forward with our WebApp development.  The first is the use of Tags.  Tags are an important tool for managing and grouping resources. 
For all resources you should consider adding Tags for cost management, and automation.  The following are some possible Tags to add to your resources:

Environment =>  Add a tag to identify resource environment lets us schedule turning off dev and test when no one is scheduled to use them,  which helps control costs

Cost Center =>  Adding this Tag allows you to track the resource for billing purposes.

Application =>  Add this tag should indicate what application owns this resource.  Adding this will help with application management and allow you to retire a resource with confidence when it is no longer needed.

You can add Tags at time of creation or at anytime during the resources lifespan.  It is important to be consistent with tags so that if you have more than one administrator they can identify resources effectively. 


Comments

Popular posts from this blog

Intro to Python Flask Microframework

The ever growing internet of things provides expanding opportunities for software engineers to leverage their skills. If you are not writing software for the devices themselves there are still ample opportunities to build backend systems to capture and analyze the avalanche of data that these devices produce.  In this post we will be looking at creating a backend system for capturing connected device data for a hypothetical IOT device. We will be using Python and a lightweight framework called Flask to create a REST based endpoint that our device calls to submit location data. Our service will store its data in a NOSQL repository powered by Azure Cosmos DB. You can find the repository for this post here . One of the big trends in software engineering is the rising popularity of Python. This multipurpose language has a dominant position in the machine learning space. If you are looking to build some skills in Python but are not currently working on a machine learning project you...