Fixed naming mistake
This commit is contained in:
@@ -42,8 +42,8 @@ module "azure-region" {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
provider "aws" {
|
provider "azure" {
|
||||||
region = module.aws_region.value
|
region = module.azure_region.value
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -52,12 +52,12 @@ provider "aws" {
|
|||||||
Hide the `westus2` region:
|
Hide the `westus2` region:
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
module "aws-region" {
|
module "azure-region" {
|
||||||
source = "https://registry.coder.com/modules/aws-region"
|
source = "https://registry.coder.com/modules/azure-region"
|
||||||
exclude = [ "westus2" ]
|
exclude = [ "westus2" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
provider "aws" {
|
provider "azure" {
|
||||||
region = module.aws_region.value
|
region = module.azure_region.value
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
Reference in New Issue
Block a user