Skip to content

Commit eaa4ded

Browse files
committed
Updates from PR review
1 parent c008240 commit eaa4ded

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

quickstart/101-front-door-classic/providers.tf

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ terraform {
88

99
random = {
1010
source = "hashicorp/random"
11+
version = "~> 3.4.3"
1112
}
1213
}
1314

quickstart/101-front-door-classic/readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ This template deploys an [Azure Front Door (classic)](https://registry.terraform
66

77
| Terraform Resource Type | Description |
88
| - | - |
9-
| `azurerm_resource_group` | The resource group for all the deployed resources.|
9+
| `azurerm_resource_group` | The resource group for all the deployed resources. |
1010
| `azurerm_frontdoor` | The Front Door (classic). |
11+
| `random_id` | A random identifier generator to generate a unique Front Door resource name. |
1112

1213
## Variables
1314

quickstart/101-front-door-classic/resource-group.tf

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ resource "azurerm_resource_group" "my_resource_group" {
22
name = var.resource_group_name
33
location = var.location
44
}
5+
6+
resource "random_id" "front_door_name" {
7+
byte_length = 8
8+
}

quickstart/101-front-door-classic/variables.tf

-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,3 @@ variable "resource_group_name" {
1111
variable "backend_address" {
1212
type = string
1313
}
14-
15-
resource "random_id" "front_door_name" {
16-
byte_length = 8
17-
}

0 commit comments

Comments
 (0)