We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When an external actor changes the acl on a SpacesObject, pulumi up --refresh doesn't detect the drift and reconcile.
acl
SpacesObject
pulumi up --refresh
import * as digitalocean from "@pulumi/digitalocean"; const region = "nyc3"; const myBucket = new digitalocean.SpacesBucket("rawkode", { region, }); const index = new digitalocean.SpacesBucketObject("index", { region, bucket: myBucket.name, acl: "private", key: "index.html", content: "<html><body><p>This page is empty.</p></body></html>", contentType: "text/html", });
Create this Space and Object, modify through the UI to public-read, run pulumi up --refresh
public-read
No changes detected.
The text was updated successfully, but these errors were encountered:
This still repros today
Sorry, something went wrong.
No branches or pull requests
Hello!
Issue details
When an external actor changes the
acl
on aSpacesObject
,pulumi up --refresh
doesn't detect the drift and reconcile.Steps to reproduce
Create this Space and Object, modify through the UI to
public-read
, runpulumi up --refresh
No changes detected.
The text was updated successfully, but these errors were encountered: