Azure / review-checklists
- среда, 8 февраля 2023 г. в 00:37:25
This repo contains code and examples to operationalize spreadsheet-based checklists that can be used for Azure design reviews on multiple technologies.
Quick links for using the checklists in this repo:
Summary of checklists supported and the respective responsible owners:
Checklist | Status | CodeOwners |
---|---|---|
LZ | GA | @alejandra8481 @anbengts @sdolgin @akasnik @Kiwibayer |
AKS | GA | @msftnadavbh @seenu433 @erjosito |
AVD | GA | @igorpag @mikewarr @bagwyth |
Multitenancy | GA | @arsenvlad @johndowns @cherchyk |
Security | GA | @mgodfrey50 @rudneir2 |
AVS | Preview | @fskelly @mgodfrey50 @Kiwibayer @robinher |
SAP | Preview | @AlastairMorrison @videshmukh |
API Management | Preview | @andredewes @seenu433 |
A common request of many organizations starting with public cloud is having their design double-checked to make sure that best practices are being followed. One of the teams in Microsoft providing this kind of design reviews and guidance is FastTrack for Azure (FTA), part of Azure Engineering at Microsoft.
When doing Azure design reviews (or any review for that matter), Microsoft employees (such as FastTrack for Azure engineers) and Microsoft partners often leverage Excel spreadsheets as the medium of choice to document findings and track design improvements and recommendations. A problem with Excel spreadsheets is that they are not easily made subject to revision control. Additionally, team collaboration with branching, issues, pull requests, reviews and others is difficult at best, impossible in most cases.
This repo separates the actual review checklist content from the presentation layer, so that the JSON-formated checklist that can be subject to version control, and it can then be imported into an Excel spreadsheet by means of Visual Basic for Applications (VBA) macros for easier handling (not all of us like working natively with JSON). The provided Checklist Review Spreadsheet leverages code to interpret JSON from the VBA module in https://github.com/VBA-tools/VBA-JSON/, from which there is a copy in this repo to be self-contained (make sure you use the latest version though). The Checklist Review Spreadsheet includes some macros (find the source code both in the spreadsheet as well as here), which are accessible from control buttons in the main sheet.
Note: the VBA code in the spreadsheet does not work on Excel for Mac, due to some critical missing libraries.
Additionally, a Github action in this repository translates after every commit the English version of the checklist to additional languages (Japanese, Korean, Spanish and Brazilian Portuguese), using the cognitive service Azure Translator. See an example of a translated checklist in aks_checklist.ja.json
Please feel free to open an issue or create a PR if you find any error or missing information in the checklists, following the Contributing guidelines
Download the Excel spreadsheet from the latest release to your PC
Use the dropdown lists to select the technology and language you would like to do your review
Click the control button "Import latest checklist". After you accept the verification message, the spreadsheet will load the latest version of the selected technology and language
(Optional) If you are going to distribute the spreadsheet to users that cannot work with macros (for example, either because of security reasons or because they use Office for Mac), save a version of the spreadsheet in xlsx format (instead of xlsm). Note that disabling macros will result in the spreadsheet losing its ability to import updated versions of the checklist or JSON-based Azure Resource Graph query results
Go row by row, and set the "Status" field to one of the available options, and write any remarks in the "Comments" field (such as why a recommendation is not relevant, or who will fix the open item)
Check the "Dashboard" worksheet for a graphical representation of the review progress
There are some settings that you might need to change in your system to run macro-enabled Excel spreadsheets. When initially opening the file you may see the following error, which prevents Excel from loading:
Excel cannot open the file 'review_checklist.xlsm' because the file format or file extension is not valid. Verify that the file has not been corrupted and that the file extension matches the format of the file.
In other cases the file opens with the following message, which prevents you from being able to load the checklist items:
If you wish to do contributions to the checklists, one option is the following:
<technology>_checklist.en.json
, for example, lz_checklist.en.json
)Some of the checks have associated Azure Resource Graph queries, which return a list of related resources and a compliance status for each. Resource Graph queries enable objective verification of the associated checks and make filling out the spreadsheet easier by collecting some environment details for you.
Along with the spreadsheet, this repo includes the script checklist_graph.sh. This script will run the graph queries stored in the JSON checklists and produce an output that can easily be copied and pasted into the spreadsheet, or alternatively generate a JSON file that can then be imported to the spreadsheet.
See the checklist_graph.sh README file for more information about how to use checklist_graph.sh.