Skip to content

Commit 9cd930a

Browse files
authored
chore: lock into exact ocp version in asic example (#104)
1 parent d1943b5 commit 9cd930a

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ module "ocp_base" {
8686
force_delete_storage = true
8787
vpc_id = ibm_is_vpc.vpc.id
8888
vpc_subnets = local.cluster_vpc_subnets
89-
ocp_version = var.ocp_version
89+
ocp_version = "4.19"
9090
worker_pools = local.worker_pools
9191
access_tags = var.access_tags
9292
ocp_entitlement = var.ocp_entitlement

examples/basic/variables.tf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,6 @@ variable "resource_tags" {
3434
default = []
3535
}
3636

37-
variable "ocp_version" {
38-
type = string
39-
description = "Version of the OCP cluster to provision."
40-
default = null
41-
}
42-
4337
variable "access_tags" {
4438
type = list(string)
4539
description = "A list of access tags to apply to the resources created by the module."

0 commit comments

Comments
 (0)