Skip to content

Commit

Permalink
Refactor mac to multi-arch
Browse files Browse the repository at this point in the history
Signed-off-by: Punith Kenchappa <[email protected]>
  • Loading branch information
pkenchap authored and prb112 committed Aug 1, 2024
1 parent ba3a92b commit 97cafe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/5_image/image.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ data "ibm_resource_group" "resource_group" {
# allow_cleanup is automatically decided by the service-broker
# Ref: https://cloud.ibm.com/docs/cloud-object-storage?topic=cloud-object-storage-endpoints
resource "ibm_resource_instance" "cos_instance" {
name = "${var.name_prefix}-mac-intel-cos"
name = "${var.name_prefix}-multi-arch-intel-cos"
resource_group_id = data.ibm_resource_group.resource_group.id
service = "cloud-object-storage"
plan = "standard"
location = "global"
tags = ["mac-power-control-plane"]
tags = ["multi-arch-power-control-plane"]
}

resource "ibm_cos_bucket" "cos_bucket" {
depends_on = [ibm_resource_instance.cos_instance]
bucket_name = "${var.name_prefix}-mac-intel"
bucket_name = "${var.name_prefix}-multi-arch-intel"
resource_instance_id = ibm_resource_instance.cos_instance.id
region_location = var.vpc_region
storage_class = "smart"
Expand Down

0 comments on commit 97cafe1

Please sign in to comment.