ami: disable route53

we got an email from AWS team that their policy prevents collection
of AMI credentials in AMI images
This commit is contained in:
Girish Ramakrishnan
2024-07-02 14:52:28 +02:00
parent e481606d0e
commit a363e508b6
3 changed files with 10 additions and 3 deletions
+2 -1
View File
@@ -304,7 +304,8 @@ app.controller('SetupDNSController', ['$scope', '$http', '$timeout', 'Client', f
} else if (status.provider === 'gce') {
$scope.dnsCredentials.provider = 'gcdns';
} else if (status.provider === 'ami') {
$scope.dnsCredentials.provider = 'route53';
// aws marketplace made a policy change that they one cannot provide route53 IAM credentials
$scope.dnsCredentials.provider = 'wildcard';
}
$scope.instanceId = search.instanceId;