added azure screenshots

This commit is contained in:
Stephen Kirby
2023-09-27 20:41:45 +00:00
parent 67b4301640
commit 3cb936be9f
4 changed files with 16 additions and 2 deletions

View File

@@ -50,15 +50,29 @@ resource "azurerm_resource_group" "example" {
### Exclude Regions
Hide the `westus2` region:
Hide all regions in Australia except australiacentral:
```hcl
module "azure-region" {
source = "https://registry.coder.com/modules/azure-region"
exclude = [ "westus2" ]
exclude = [
"australia",
"australiacentral2",
"australiaeast",
"australiasoutheast"
]
}
resource "azurerm_resource_group" "example" {
location = module.azure_region.value
}
```
![Azure Exclude](../.images/azure-exclude.png)
## Related templates
For a complete Azure template, see the following examples in the [Coder Registry](https://registry.coder.com/).
- [Azure VM (Linux)](https://registry.coder.com/templates/azure-linux)
- [Azure VM (Windows)](https://registry.coder.com/templates/azure-windows)