Skip to content

Commit

Permalink
Fix problem propagating the product_version attribute (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
meaksh authored Oct 14, 2024
1 parent 27c67ee commit 3e3118d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/build_host/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module "build_host" {
connect_to_additional_network = true
roles = ["build_host"]
disable_firewall = var.disable_firewall
product_version = var.product_version
grains = {
mirror = var.base_configuration["mirror"]
server = var.server_configuration["hostname"]
Expand Down
1 change: 1 addition & 0 deletions modules/host/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ module "host" {
additional_disk_size = var.additional_disk_size
second_additional_disk_size = var.second_additional_disk_size
volume_provider_settings = var.volume_provider_settings
product_version = var.product_version

grains = merge({ disable_firewall = var.disable_firewall },
var.grains)
Expand Down
1 change: 1 addition & 0 deletions modules/server/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ module "server" {
additional_disk_size = var.repository_disk_size
second_additional_disk_size = var.database_disk_size
volume_provider_settings = var.volume_provider_settings
product_version = var.product_version

grains = {
cc_username = var.base_configuration["cc_username"]
Expand Down
1 change: 1 addition & 0 deletions modules/sshminion/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ module "sshminion" {
connect_to_additional_network = false
roles = ["sshminion"]
disable_firewall = var.disable_firewall
product_version = var.product_version
grains = {
mirror = var.base_configuration["mirror"]
sles_registration_code = var.sles_registration_code
Expand Down

0 comments on commit 3e3118d

Please sign in to comment.