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

Pulumi Doesn't Refresh ACL on SpacesObject #299

Open
rawkode opened this issue Mar 23, 2022 · 1 comment
Open

Pulumi Doesn't Refresh ACL on SpacesObject #299

rawkode opened this issue Mar 23, 2022 · 1 comment
Labels
kind/bug Some behavior is incorrect or out of spec

Comments

@rawkode
Copy link

rawkode commented Mar 23, 2022

Hello!

  • Vote on this issue by adding a 👍 reaction
  • To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already)

Issue details

When an external actor changes the acl on a SpacesObject, pulumi up --refresh doesn't detect the drift and reconcile.

Steps to reproduce

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

No changes detected.

@rawkode rawkode added the kind/bug Some behavior is incorrect or out of spec label Mar 23, 2022
@mikhailshilkov
Copy link
Member

This still repros today

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Some behavior is incorrect or out of spec
Projects
None yet
Development

No branches or pull requests

2 participants