Report feature "resourceReferences" is not supported (#5709)

This feature isn't fully supported yet, so stop reporting it is.
This commit is contained in:
Justin Van Patten 2020-11-06 18:56:23 -08:00 committed by GitHub
parent ff22649925
commit 88f6b4c560
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -2,7 +2,9 @@ CHANGELOG
=========
## HEAD (Unreleased)
_(none)_
- Fix a bug that was causing errors when (de)serializing custom resources.
[#5709](https://github.com/pulumi/pulumi/pull/5709)
## 2.13.1 (2020-11-06)

View file

@ -532,7 +532,7 @@ func (rm *resmon) SupportsFeature(ctx context.Context,
hasSupport := false
switch req.Id {
case "secrets", "resourceReferences":
case "secrets":
hasSupport = true
}