Skip to content

Commit

Permalink
Cosmetic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chkp-yairra committed Oct 2, 2023
1 parent d7e7696 commit 1edcb44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions terraform/azure/high-availability-existing-vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -494,14 +494,14 @@ resource "azurerm_virtual_machine" "vm-instance-availability-zone" {
}
//********************** Role Assigments **************************//
data "azurerm_role_definition" "virtual_machine_contributor_role_definition" {
name = "Reader"
name = "Virtual Machine Contributor"
}
data "azurerm_role_definition" "reader_role_definition" {
name = "Virtual Machine Contributor"
name = "Reader"
}
data "azurerm_client_config" "client_config" {
}
resource "azurerm_role_assignment" "virtual_machine_contributor_role_definition" {
resource "azurerm_role_assignment" "cluster_virtual_machine_contributor_assignment" {
count = 2
lifecycle {
ignore_changes = [
Expand Down
6 changes: 3 additions & 3 deletions terraform/azure/high-availability-new-vnet/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -515,14 +515,14 @@ resource "azurerm_virtual_machine" "vm-instance-availability-zone" {
}
//********************** Role Assigments **************************//
data "azurerm_role_definition" "virtual_machine_contributor_role_definition" {
name = "Reader"
name = "Virtual Machine Contributor"
}
data "azurerm_role_definition" "reader_role_definition" {
name = "Virtual Machine Contributor"
name = "Reader"
}
data "azurerm_client_config" "client_config" {
}
resource "azurerm_role_assignment" "virtual_machine_contributor_role_definition" {
resource "azurerm_role_assignment" "cluster_virtual_machine_contributor_assignment" {
count = 2
lifecycle {
ignore_changes = [
Expand Down

0 comments on commit 1edcb44

Please sign in to comment.