Skip to content

Commit

Permalink
Fix aws.Tags interface to match updated codegen (#1048)
Browse files Browse the repository at this point in the history
* Fix aws.Tags interface to match updated codegen
  • Loading branch information
Lee Zen authored Jul 22, 2020
1 parent 18293bd commit 0cb38bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CHANGELOG
=========

## HEAD (Unreleased)
_(none)_
* Update `aws.Tags` interface to reflect changes from version `2.10.0`

---

Expand Down
4 changes: 3 additions & 1 deletion sdk/nodejs/tags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import * as pulumi from "@pulumi/pulumi";

/**
* Tags represents a set of key-value string pairs to which can be applied
* to an AWS resource.
*/
export interface Tags {
[name: string]: string;
[name: string]: pulumi.Input<string>;
}

0 comments on commit 0cb38bc

Please sign in to comment.