Pavel Korsukov
Pavel Korsukov

Reputation: 959

How to opt-in for AWS EC2 AMI from SDK?

I am trying to launch an AWS EC2 instance using CentOS AMI ami-21682673 from EC2 SDK. The AMI itself is a marketplace product and it requires an acceptance of the licensing terms.

The error I am getting:

In order to use this AWS Marketplace product 
you need to accept terms and subscribe. To do so please visit 
http://aws.amazon.com/marketplace/pp?sku=eggbgx9svw4xhzs1omttdv29q

It is possible to accept terms from AWS web page. But I found no way to accept it from SDK. Any workarounds for this?

I know that the subscription will be saved in AWS once accepted. But my scenario is for a blank new profile with no subscriptions and SDK access only. Thanks for any help!

Upvotes: 6

Views: 4510

Answers (2)

Harsha G V
Harsha G V

Reputation: 1030

this can be done via terraform now, using the Terraform AWS Provider v4.58.0

see this for more details

OR

via AWS SDK, example: AcceptGrant

Upvotes: 0

da hua
da hua

Reputation: 31

The terms and conditions for Marketplace published AMIs can only be accepted via the web site, and not via the command line or API directly. The EULA is required to be shown to the customer (in the case of the Debian AMIs in Marketplace, it is the Debian Social Contract which is displayed to the customer).

Upvotes: 3

Related Questions