diff --git a/pkg/distro/rhel/rhel9/ami.go b/pkg/distro/rhel/rhel9/ami.go index 5776f06b5e..34af5986e9 100644 --- a/pkg/distro/rhel/rhel9/ami.go +++ b/pkg/distro/rhel/rhel9/ami.go @@ -240,11 +240,6 @@ func ec2CommonPackageSet(t *rhel.ImageType) rpmmd.PackageSet { }, }.Append(distroSpecificPackageSet(t)) - // Include awscli2 on RHEL 9.5+ (CLOUDX-913) - if common.VersionGreaterThanOrEqual(t.Arch().Distro().OsVersion(), "9.5") { - ps.Include = append(ps.Include, "awscli2") - } - return ps }