Running the azure-team terraform make file to create your infrastructure may not work on a Windows machine. If you cannot get it to run, install a linux distribution where you will exectute the tf files. Setting up a distribution with all of the right dependencies does involve a bit of setup to get it configured properly. The following is a list of steps you'll need to complete:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The easiest lay to get first and last element from an array in javascript with one line code. | |
| <script> | |
| const meals = ['apple', 'orange', 'bananna']; | |
| const {length, 0: first, [length - 1]: last} = meals; | |
| console.log(first, last) | |
| </script> |