Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 693777265
  • Loading branch information
dfellmeth-google authored and copybara-github committed Nov 6, 2024
1 parent 470dfcc commit d9e6e3c
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
6 changes: 3 additions & 3 deletions modules/s4/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -429,19 +429,19 @@ variable "disk_size_map" {
}

variable "custom_app_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the app VMs."
default = {}
}

variable "custom_ascs_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the ASCS VMs."
default = {}
}

variable "custom_db_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the DB VMs."
default = {}
}
6 changes: 3 additions & 3 deletions modules/s4_ha/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -458,19 +458,19 @@ variable "disk_size_map" {
}

variable "custom_app_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the app VMs."
default = {}
}

variable "custom_ascs_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the ASCS VMs."
default = {}
}

variable "custom_db_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the DB VMs."
default = {}
}
2 changes: 1 addition & 1 deletion modules/sap_ase/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ variable "can_ip_forward" {
}

variable "custom_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the VM."
default = {}
}
2 changes: 1 addition & 1 deletion modules/sap_db2/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ variable "can_ip_forward" {
}

variable "custom_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the VM."
default = {}
}
4 changes: 2 additions & 2 deletions modules/sap_hana/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -553,13 +553,13 @@ variable "log_stripe_size" {
}

variable "custom_primary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the primary VM."
default = {}
}

variable "custom_secondary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the secondary VMs."
default = {}
}
6 changes: 3 additions & 3 deletions modules/sap_hana_ha/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -608,19 +608,19 @@ variable "log_stripe_size" {
}

variable "custom_primary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the primary VM."
default = {}
}

variable "custom_secondary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the secondary VMs."
default = {}
}

variable "custom_mm_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the majority maker VM."
default = {}
}
6 changes: 3 additions & 3 deletions modules/sap_hana_scaleout/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -380,19 +380,19 @@ variable "can_ip_forward" {
}

variable "custom_primary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the primary VM."
default = {}
}

variable "custom_secondary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the secondary VMs."
default = {}
}

variable "custom_standby_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the standby VMs."
default = {}
}
Expand Down
2 changes: 1 addition & 1 deletion modules/sap_maxdb/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ variable "can_ip_forward" {
}

variable "custom_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the VM."
default = {}
}
2 changes: 1 addition & 1 deletion modules/sap_nw/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ variable "can_ip_forward" {
}

variable "custom_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the VM."
default = {}
}
4 changes: 2 additions & 2 deletions modules/sap_nw_ha/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@ variable "can_ip_forward" {
}

variable "custom_primary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the primary VM."
default = {}
}

variable "custom_secondary_metadata" {
type = map<string, string>
type = map(string)
description = "Optional - default is empty. Custom metadata to be added to the secondary VM."
default = {}
}

0 comments on commit d9e6e3c

Please sign in to comment.