Skip to content

Commit

Permalink
Fixed a couple typos
Browse files Browse the repository at this point in the history
Found a couple typos when I was deploying a cluster. This should fix it.
  • Loading branch information
ElliotG authored and hkantare committed Jan 18, 2023
1 parent d68b2f3 commit 0f336d4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions website/docs/r/container_cluster.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,10 @@ data "ibm_resource_group" "resource_group" {
resource "ibm_container_vpc_cluster" "cluster" {
name = "mycluster"
vpc_id = ibm_is_vpc.vpc1.id
flavor = "bx2-4x16"
flavor = "bx2.4x16"
worker_count = 3
resource_group_id = data.ibm_resource_group.resource_group.id zones {
resource_group_id = data.ibm_resource_group.resource_group.id
zones {
subnet_id = ibm_is_subnet.subnet1.id
name = "us-south-1"
}
Expand All @@ -170,7 +171,7 @@ resource "ibm_container_vpc_cluster" "cluster" {
resource "ibm_container_vpc_worker_pool" "cluster_pool" {
cluster = ibm_container_vpc_cluster.cluster.id
worker_pool_name = "mywp"
flavor = "bx2-2x8"
flavor = "bx2.2x8"
vpc_id = ibm_is_vpc.vpc1.id
worker_count = 3
resource_group_id = data.ibm_resource_group.resource_group.id
Expand Down

0 comments on commit 0f336d4

Please sign in to comment.