Skip to content

Commit

Permalink
chore: (IAC-1196) resolving additional errors
Browse files Browse the repository at this point in the history
  • Loading branch information
riragh committed Oct 25, 2023
1 parent 1fbac69 commit 6ae0ba5
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 19 deletions.
9 changes: 5 additions & 4 deletions modules/azure_aks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ variable "aks_cluster_rg" {
type = string
}

variable "aks_cluster_rg_id" {
description = "The `azurerm_kubernetes_cluster`'s id."
type = string
}
## unused
# variable "aks_cluster_rg_id" {
# description = "The `azurerm_kubernetes_cluster`'s id."
# type = string
# }

variable "aks_cluster_dns_prefix" {
description = "DNS prefix specified when creating the managed cluster."
Expand Down
2 changes: 1 addition & 1 deletion modules/azurerm_netapp/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ output "netapp_pool_id" {
}

output "netapp_endpoint" {
value = azurerm_netapp_volume.anf.mount_ip_addresses.0
value = azurerm_netapp_volume.anf.mount_ip_addresses[0]
}

output "netapp_path" {
Expand Down
20 changes: 11 additions & 9 deletions modules/azurerm_netapp/variables.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

variable create_netapp {
description = "Boolean flag to create Azure NetApp Files"
type = bool
default = false
}
#unused
# variable create_netapp {
# description = "Boolean flag to create Azure NetApp Files"
# type = bool
# default = false
# }

variable "prefix" {
description = "A prefix used in the name for all the Azure resources created by this script."
Expand All @@ -22,10 +23,11 @@ variable "location" {
type = string
}

variable "vnet_name" {
description = "Azure Virtual Network"
type = string
}
#unused
# variable "vnet_name" {
# description = "Azure Virtual Network"
# type = string
# }

variable "subnet_id" {
description = "Azure subnet id for Azure NetApp Files"
Expand Down
11 changes: 6 additions & 5 deletions modules/azurerm_postgresql_flex/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ variable "delegated_subnet_id" {
type = string
}

variable "private_dns_zone_id" {
description = "The ID of the private DNS zone to create the PostgreSQL Flexible Server. Changing this forces a new PostgreSQL Flexible Server to be created."
type = string
default = null
}
#unused
# variable "private_dns_zone_id" {
# description = "The ID of the private DNS zone to create the PostgreSQL Flexible Server. Changing this forces a new PostgreSQL Flexible Server to be created."
# type = string
# default = null
# }

0 comments on commit 6ae0ba5

Please sign in to comment.