Skip to content

Commit

Permalink
Add CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Hoban committed Dec 29, 2020
1 parent 2a70dd7 commit e2a329c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ CHANGELOG
* Ensure API Gateway static routes use POSIX paths. File paths with '\\' are transformed to '/' when uploaded.
[#581](https://github.com/pulumi/pulumi-awsx/pull/581)
* Add `cloudtrail.Trail` component which can generate the required roles and bucket for a CloudTrail.
* Update ECS types [#616](https://github.com/pulumi/pulumi-awsx/pull/616)

## 0.22.0 (2020-09-01)

Expand Down
6 changes: 3 additions & 3 deletions nodejs/awsx/ecs/container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,10 @@ export interface Container {

/**
* When this parameter is true, this allows you to deploy containerized applications that
* require stdin or a tty to be allocated. This parameter maps to OpenStdin in the Create
* a container section of the Docker Remote API and the --interactive option to docker run.
* require stdin or a tty to be allocated. This parameter maps to OpenStdin in the Create a
* container section of the Docker Remote API and the --interactive option to docker run.
*/
interactive?: pulumi.Input<string>;
interactive?: pulumi.Input<boolean>;

/**
* The links parameter allows containers to communicate with each other without the need for
Expand Down

0 comments on commit e2a329c

Please sign in to comment.