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

NodeGroups accept strings as InstanceTypes #639

Merged
merged 2 commits into from
Nov 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Unreleased
- Add support for setting `WARM_PREFIX_TARGET` and `ENABLE_PREFIX_DELEGATION`
[#618](https://github.com/pulumi/pulumi-eks/pull/618)
- NodeGroups accept strings as InstanceTypes
[#639](https://github.com/pulumi/pulumi-eks/pull/639)
## 0.35.0 (Released November 10, 2021)
- Add support for setting the init container image
[#631](https://github.com/pulumi/pulumi-eks/pull/631)
Expand Down
2 changes: 1 addition & 1 deletion nodejs/eks/nodegroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface NodeGroupBaseOptions {
/**
* The instance type to use for the cluster's nodes. Defaults to "t2.medium".
*/
instanceType?: pulumi.Input<aws.ec2.InstanceType>;
instanceType?: pulumi.Input<string | aws.ec2.InstanceType>;

/**
* Bidding price for spot instance. If set, only spot instances will be added as worker node
Expand Down