Skip to content

Commit

Permalink
Fix TestIMDS flaky test (#4797)
Browse files Browse the repository at this point in the history
The ami filter we were using picked up a new AMI which had a minimum
volume size of 30. This PR modifies the filter to be a little more
specific to filter out these special case AMIs.

e.g.
- `amazon/al2023-ami-2023.6.20241111.0-kernel-6.1-x86_64` (good)
- `amazon/al2023-ami-ecs-neuron-hvm-2023.0.20241115-kernel-6.1-x86_64`
(bad)
  • Loading branch information
corymhall authored Nov 18, 2024
1 parent 747288c commit eef4e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/test-programs/imds-auth/imds-v2/Pulumi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ variables:
arguments:
filters:
- name: name
values: ["al2023*x86_64*"]
values: ["al2023-ami-2023*x86_64*"]
owners:
- amazon
mostRecent: true
Expand Down

0 comments on commit eef4e41

Please sign in to comment.