Skip to content

Commit

Permalink
Adding resource group to the cos_instance
Browse files Browse the repository at this point in the history
  • Loading branch information
vincepower committed May 21, 2021
1 parent 8642c3b commit b8372e3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ locals {
}

resource "ibm_resource_instance" "cos_instance" {
name = var.cos_name
service = "cloud-object-storage"
plan = "standard"
location = "global"
name = var.cos_name
service = "cloud-object-storage"
plan = "standard"
location = "global"
resource_group_id = data.ibm_resource_group.rhpds.id
}

resource "ibm_container_vpc_cluster" "rhpds" {
Expand Down

0 comments on commit b8372e3

Please sign in to comment.