Skip to content
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
5 changes: 2 additions & 3 deletions solutions/fully-configurable/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ variable "ibmcloud_api_key" {

variable "existing_resource_group_name" {
type = string
description = "The name of an existing resource group to provision resource in."
default = "Default"
nullable = false
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
default = null
}

variable "prefix" {
Expand Down
5 changes: 2 additions & 3 deletions solutions/security-enforced/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ variable "ibmcloud_api_key" {

variable "existing_resource_group_name" {
type = string
description = "The name of an existing resource group to provision resource in."
default = "Default"
nullable = false
description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
default = null
}

variable "prefix" {
Expand Down