Skip to content
Closed
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
2 changes: 1 addition & 1 deletion solutions/deploy/cloud-pak-deployer/config/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ variable "cluster_name" {
}

variable "cpd_version" {
default = "5.0.2"
default = "5.1.1"
description = "Cloud Pak for Data version to install"
type = string
}
Expand Down
12 changes: 4 additions & 8 deletions solutions/deploy/cpd-image-build/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,25 @@ variable "region" {
variable "resource_group" {
description = "Resource groups to create or reference"
type = string

default = null
default = null
}

variable "resource_group_exists" {
description = "Boolean value representing if the resource groups exists or not"
type = bool

default = false
default = false
}

variable "container_registry_namespace" {
description = "The name of the container registry namespace"
type = string

default = null
default = null
}

variable "code_engine_project_name" {
description = "The name of the code engine project to be created for the image build"
type = string

default = null
default = null
}

variable "code_engine_project_id" {
Expand Down