Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The ibm_storage_block resource exposes the tag option but it is not taggable #5697

Open
luiof opened this issue Oct 3, 2024 · 0 comments
Open
Labels
service/Classic Infrastructure Issues related to classic Infrastructure

Comments

@luiof
Copy link
Contributor

luiof commented Oct 3, 2024

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Terraform CLI and Terraform IBM Provider Version

Affected Resource(s)

All versions.

Terraform Configuration Files

Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.

# Copy-paste your Terraform configurations here - for large Terraform configs,
# please share a link to the ZIP file.

Debug Output

Panic Output

Expected Behavior

The ibm_storage_block resource exposes the tag option but it is not taggable.
We expect to not have tags on ibm_storage_block resources.

Actual Behavior

resource "ibm_storage_block" "test" {
  type                      = "Endurance"
  datacenter                = "tok05"
  capacity                  = 20
  iops                      = 4
  os_format_type            = "Linux"
  allowed_virtual_guest_ids = [ibm_compute_vm_instance.dummy_server.id]
  allowed_ip_addresses      = [ibm_compute_vm_instance.dummy_server.ipv4_address_private]
  snapshot_capacity         = 20
  hourly_billing            = true
  notes                     = "dummy"
  tags                      = ["env:test"]
}

The tags field is ignored:
Screenshot 2024-10-03 at 17 52 56

Steps to Reproduce

  1. terraform init
  2. terraform plan
  3. terraform apply

Important Factoids

References

  • #0000
@github-actions github-actions bot added the service/Classic Infrastructure Issues related to classic Infrastructure label Oct 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
service/Classic Infrastructure Issues related to classic Infrastructure
Projects
None yet
Development

No branches or pull requests

1 participant