Skip to content

Commit

Permalink
data/azure/master: Add dash to nic name
Browse files Browse the repository at this point in the history
Fix code consistency issue of missing dash in nic name.
  • Loading branch information
mtnbikenc committed Jul 27, 2021
1 parent 3ddd241 commit 9268ffe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/data/azure/cluster/master/master.tf
Expand Up @@ -9,7 +9,7 @@ locals {
resource "azurerm_network_interface" "master" {
count = var.instance_count

name = "${var.cluster_id}-master${count.index}-nic"
name = "${var.cluster_id}-master-${count.index}-nic"
location = var.region
resource_group_name = var.resource_group_name

Expand Down

0 comments on commit 9268ffe

Please sign in to comment.