Skip to content

Commit 3908a33

Browse files
committed
chore: (IAC-1196) resolving additional errors
1 parent f42d48a commit 3908a33

File tree

4 files changed

+23
-19
lines changed

4 files changed

+23
-19
lines changed

modules/azure_aks/variables.tf

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ variable "aks_cluster_rg" {
1111
type = string
1212
}
1313

14-
variable "aks_cluster_rg_id" {
15-
description = "The `azurerm_kubernetes_cluster`'s id."
16-
type = string
17-
}
14+
## unused
15+
# variable "aks_cluster_rg_id" {
16+
# description = "The `azurerm_kubernetes_cluster`'s id."
17+
# type = string
18+
# }
1819

1920
variable "aks_cluster_dns_prefix" {
2021
description = "DNS prefix specified when creating the managed cluster."

modules/azurerm_netapp/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ output "netapp_pool_id" {
1010
}
1111

1212
output "netapp_endpoint" {
13-
value = azurerm_netapp_volume.anf.mount_ip_addresses.0
13+
value = azurerm_netapp_volume.anf.mount_ip_addresses[0]
1414
}
1515

1616
output "netapp_path" {

modules/azurerm_netapp/variables.tf

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Copyright © 2020-2023, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
variable create_netapp {
5-
description = "Boolean flag to create Azure NetApp Files"
6-
type = bool
7-
default = false
8-
}
4+
#unused
5+
# variable create_netapp {
6+
# description = "Boolean flag to create Azure NetApp Files"
7+
# type = bool
8+
# default = false
9+
# }
910

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

25-
variable "vnet_name" {
26-
description = "Azure Virtual Network"
27-
type = string
28-
}
26+
#unused
27+
# variable "vnet_name" {
28+
# description = "Azure Virtual Network"
29+
# type = string
30+
# }
2931

3032
variable "subnet_id" {
3133
description = "Azure subnet id for Azure NetApp Files"

modules/azurerm_postgresql_flex/variables.tf

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,9 @@ variable "delegated_subnet_id" {
9999
type = string
100100
}
101101

102-
variable "private_dns_zone_id" {
103-
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."
104-
type = string
105-
default = null
106-
}
102+
#unused
103+
# variable "private_dns_zone_id" {
104+
# 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."
105+
# type = string
106+
# default = null
107+
# }

0 commit comments

Comments
 (0)