Skip to content

Commit

Permalink
Correctly update product version in example.
Browse files Browse the repository at this point in the history
  • Loading branch information
maximenoel8 committed Oct 2, 2024
1 parent 2f8f81d commit cee960f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 1 addition & 3 deletions main.tf.aws.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module "base" {
cc_password = ...

name_prefix = ... // if you use name_prefix, make sure to update the server_configuration for clients/minions below
product_version = ...
product_version = "uyuni-release"

provider_settings = {
availability_zone = local.availability_zone
Expand Down Expand Up @@ -68,7 +68,6 @@ module "server" {

name = "server"
image = "opensuse154o"
product_version = "uyuni-release"

provider_settings = { }
}
Expand All @@ -80,7 +79,6 @@ module "minion" {
name = "minion"
image = "opensuse154o"
server_configuration = module.server.configuration
product_version = "uyuni-release"
}

output "key_file" {
Expand Down
4 changes: 1 addition & 3 deletions main.tf.azure.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module "base" {

name_prefix = local.name_prefix
// if you use name_prefix, make sure to update the server_configuration for clients/minions below
product_version = "*"
product_version = "uyuni-release"
provider_settings = {
location = local.location
ssh_allowed_ips = "*"
Expand Down Expand Up @@ -65,7 +65,6 @@ module "server" {

name = "server"
image = "suma41"
product_version = "suma41"


provider_settings = {
Expand All @@ -82,7 +81,6 @@ module "minion" {
name = "minion"
image = "opensuse154"
server_configuration = module.server.configuration
product_version = "uyuni-release"
}

output "key_file" {
Expand Down
2 changes: 1 addition & 1 deletion main.tf.libvirt.example
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module "base" {
// Set SUSE Customer Center credentials here if you have some
// cc_username = ""
// cc_password = ""
// product_version = "uyuni-master"
product_version = "uyuni-master"

// optional parameters with defaults below
// use_avahi = true
Expand Down
2 changes: 1 addition & 1 deletion main.tf.libvirt.example.Manager-43
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module "base" {
// Set SUSE Customer Center credentials here if you have some
// cc_username = ""
// cc_password = ""
// product_version = "4.3-nightly"
product_version = "4.3-nightly"

// optional parameters with defaults below
// use_avahi = true
Expand Down

0 comments on commit cee960f

Please sign in to comment.