Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix problem propagating the "product_version" attribute #1737

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"]
auto_connect_to_master = var.auto_connect_to_master
Expand Down
Loading