List of helpful shortcuts for faster coding
If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
# Create a resource group if it doesn't exist | |
resource "azurerm_resource_group" "myterraformgroup" { | |
name = "myResourceGroup" | |
location = "eastus" | |
tags = { | |
environment = "Terraform Demo" | |
} | |
} |