-
Notifications
You must be signed in to change notification settings - Fork 71
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
Labels are not missing fromgoogle_storage_bucket.rb #242
Closed
pburnet-lbg opened this issue
Apr 9, 2020
· 4 comments
· Fixed by GoogleCloudPlatform/magic-modules#3364, modular-magician/inspec-gcp#378, hashicorp/terraform-provider-google#6088 or ansible-collections/google.cloud#191
Closed
Labels are not missing fromgoogle_storage_bucket.rb #242
pburnet-lbg opened this issue
Apr 9, 2020
· 4 comments
· Fixed by GoogleCloudPlatform/magic-modules#3364, modular-magician/inspec-gcp#378, hashicorp/terraform-provider-google#6088 or ansible-collections/google.cloud#191
Comments
Ah, yeah that looks like an oversight. I'll get that added. |
This was referenced Apr 9, 2020
Hm, my PR auto closed this even though it wasn't in master yet. I'll only link issues on the actual PR to this repo in the future |
Hi @slevenick Please advise eta as we are nearing a critical milestone. |
@sukchomb see the 1.2.0 of the profile. Should have labels enabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We used to use the method (bucket.respond_to? :labels) all the time in our checks and the latest release does not seem to expose this method anymore.
Describe the problem
bucket = google_storage_bucket(name: 'll-pbburnetbucket')
(bucket.respond_to? :labels)
should be true is there are labels set on a bucket
Possible Solution
bit of guess but i think we need
add.
@labels = @fetch['labels]
also add
attr_reader :labels
The text was updated successfully, but these errors were encountered: