-
Notifications
You must be signed in to change notification settings - Fork 807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User Story 89540 #231
User Story 89540 #231
Changes from 3 commits
bd72b68
acb0e06
4dceb66
57033e0
4cd61cf
61bd196
e93d4e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
resource "random_pet" "rg_name" { | ||
prefix = var.resource_group_name_prefix | ||
} | ||
|
||
resource "azurerm_resource_group" "rg" { | ||
name = random_pet.rg_name.id | ||
location = var.resource_group_location | ||
} | ||
|
||
resource "random_string" "windows_server_vm_hostname" { | ||
length = 8 | ||
lower = true | ||
upper = false | ||
special = false | ||
} | ||
|
||
resource "random_pet" "windows_server_public_ip_dns" { | ||
prefix = "dns" | ||
} | ||
|
||
resource "random_password" "password" { | ||
length = 16 | ||
special = true | ||
lower = true | ||
upper = true | ||
numeric = true | ||
} | ||
|
||
# https://registry.terraform.io/modules/Azure/compute/azurerm | ||
module "windows_server" { | ||
count = 3 # Define 3 Windows Server VMs | ||
source = "Azure/compute/azurerm" | ||
resource_group_name = azurerm_resource_group.rg.name | ||
vnet_subnet_id = module.network.vnet_subnets[0] | ||
is_windows_image = true | ||
vm_hostname = "vm-${random_string.windows_server_vm_hostname.result}-${count.index}" | ||
admin_password = random_password.password.result | ||
vm_os_simple = "WindowsServer" | ||
public_ip_dns = ["${random_pet.windows_server_public_ip_dns.id}-${count.index}"] | ||
} | ||
|
||
# https://registry.terraform.io/modules/Azure/network/azurerm | ||
module "network" { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these verified modules? (I assume the answer is yes) If so, let's add a comment with a link to the verified module main documentation repo. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was thinking something more like this, which refers to the verified module repo, not the registry:
|
||
source = "Azure/network/azurerm" | ||
resource_group_name = azurerm_resource_group.rg.name | ||
version = "5.2.0" | ||
subnet_prefixes = ["10.0.1.0/24"] | ||
subnet_names = ["subnet1"] | ||
use_for_each = true | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
output "resource_group_name" { | ||
value = azurerm_resource_group.rg.name | ||
} | ||
|
||
output "windows_vm_public_names" { | ||
value = module.windows_server[*].public_ip_dns_name | ||
} | ||
|
||
output "vm_public_ip_addresses" { | ||
value = module.windows_server[*].public_ip_address | ||
} | ||
|
||
output "vm_private_ip_addresses" { | ||
value = module.windows_server[*].network_interface_private_ip | ||
} | ||
|
||
output "vm_hostnames" { | ||
value = module.windows_server[*].vm_names | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
terraform { | ||
required_version = ">=1.0" | ||
required_providers { | ||
azurerm = { | ||
source = "hashicorp/azurerm" | ||
version = "~>3.0" | ||
} | ||
random = { | ||
source = "hashicorp/random" | ||
version = "~>3.0" | ||
} | ||
} | ||
} | ||
provider "azurerm" { | ||
features {} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Azure Windows VM cluster | ||
|
||
This template deploys a Windows VM cluster on Azure. | ||
|
||
## Terraform resource types | ||
|
||
- [random_pet](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/pet) | ||
- [azurerm_resource_group](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/resource_group) | ||
- [random_string](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | ||
- [random_password](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/password) | ||
|
||
## Terraform modules | ||
|
||
- [windows_server](https://registry.terraform.io/modules/Azure/compute/azurerm) | ||
TomArcherMsft marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [network](https://registry.terraform.io/modules/Azure/network/azurerm) | ||
|
||
## Variables | ||
|
||
| Name | Description | Default | | ||
|-|-|-| | ||
| `resource_group_name_prefix` | Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription. | rg | | ||
| `resource_group_location` | Location of the resource group. | eastus | | ||
|
||
## Example | ||
|
||
To see how to run this example, see [Configure an Azure VM cluster using Terraform](https://learn.microsoft.com/azure/developer/terraform/create-vm-cluster-module). |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
variable "resource_group_location" { | ||
type = string | ||
default = "eastus" | ||
description = "Location for all resources." | ||
} | ||
|
||
variable "resource_group_name_prefix" { | ||
type = string | ||
default = "rg" | ||
description = "Prefix of the resource group name that's combined with a random value so name is unique in your Azure subscription." | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can add
delete_os_disk_on_termination = true
here and removeprevent_deletion_if_contains_resources = false
inprofider azurerm
block.