Skip to content

Commit

Permalink
added AVS
Browse files Browse the repository at this point in the history
  • Loading branch information
erjosito committed Jan 21, 2022
1 parent 2274bd0 commit 818b2b5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
/checklists/lz_checklist.en.json @alejandra8481 @anbengts @JasonBeck2 @akasnik @Kiwibayer
/checklists/aks_checklist.en.json @erjosito @seenu433
/checklists/avd_checklist.en.json @igorpag @mikewarr @bagwyth
/checklists/avs_checklist.en.json @fskelly @mgodfrey50 @Kiwibayer @robinher
/checklists/security_checklist.en.json @mgodfrey50
/scripts/ @fskelly @erjosito
/spreadsheet/ @erjosito
Expand Down
9 changes: 7 additions & 2 deletions spreadsheet/Sheet1.cls
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ Sub import_checklist_fromurl()
'Get URL stored in the Values sheet
checklist_base_url = Sheets(values_sheet).Cells(2, values_url_column)
If Len(checklist_base_url) > 0 Then
'Look at the option buttons to set global variables that control technology (LZ, AKS, AVD) and language
'Look at the option buttons to set global variables that control technology (LZ, AKS, AVD, AVS, Security) and language
set_checklist_variables
'Append the technology and options variables (default to English and LZ)
If Len(selected_technology) = 0 Then selected_technology = "lz"
Expand Down Expand Up @@ -667,6 +667,9 @@ End Sub
Sub set_avd()
selected_technology = "avd"
End Sub
Sub set_avs()
selected_technology = "avs"
End Sub
Sub set_security()
selected_technology = "security"
End Sub
Expand All @@ -693,7 +696,7 @@ Sub clear_rows()
Cells(row, guid_column) = ""
row = row + 1
Loop
Cells(2, 1) = "Azure Review Checklist"
Cells(2, 1) = Sheets(values_sheet).Cells(2, 5)
End Sub

'Clear all rows
Expand Down Expand Up @@ -721,6 +724,8 @@ On Error GoTo set_checklist_variables_err
Case Sheets(values_sheet).Cells(4, values_technology_selection_column)
selected_technology = "avd"
Case Sheets(values_sheet).Cells(5, values_technology_selection_column)
selected_technology = "avs"
Case Sheets(values_sheet).Cells(6, values_technology_selection_column)
selected_technology = "security"
Case Else
MsgBox "Technology option " & Cells(technology_selection_row, technology_selection_col) & " unknown, defaulting to Landing Zone review", vbCritical
Expand Down
Binary file modified spreadsheet/review_checklist.xlsm
Binary file not shown.

0 comments on commit 818b2b5

Please sign in to comment.