aws opsworks associate-elastic-ip fails

0

I'm trying to allocate an elastic IP to an existing instance in ap-southeast-2 (Sydney) using this command: aws opsworks --profile COMPANY --region ap-southeast-2 associate-elastic-ip --instance-id $IID --elastic-ip $EIP and it fails with this error message: An error occurred (ResourceNotFoundException) when calling the AssociateElasticIp operation: Unable to find elastic ip with ID 999.999.999.999

I'm running this on Linux from the CLI. I export the instance id and the elastic IP to the 2 variables and i've verified that they exist and are available. I've also verified that the --profile is valid as I can run the aws ec2 describe-addresses using that profile id. I've also tried using the actual IP instead of the variable and it gives the same error.

Any insight? This seems to be a very simple command but I can't make it work. Thanks.

JL
질문됨 10달 전248회 조회
2개 답변
0
수락된 답변

I get the same error in the same region, and I'm wondering if it's because I'm trying it with a brand new instance that isn't registered with an OpsWorks stack (and I'm not able to register a new stack because OpsWorks is EOL https://docs.aws.amazon.com/opsworks/latest/userguide/stacks-eol-faqs.html ).

Is your instance registered to an existing OpsWorks stack?

Using aws ec2 rather than aws opsworks is fine using the same instance and EIP, but I'm guessing you have a good reason for wanting to use OpsWorks.

$ aws opsworks --region ap-southeast-2 associate-elastic-ip --instance-id i-0635149fxyzxyzxyz --elastic-ip 13.x.y.z

An error occurred (ResourceNotFoundException) when calling the AssociateElasticIp operation: Unable to find elastic ip with ID 13.x.y.z
$ aws ec2 associate-address --region ap-southeast-2 --instance-id i-0635149fxyzxyzxyz --public-ip 13.x.y.z
{
    "AssociationId": "eipassoc-0f5ceba5xyzxyzxyz"
}
$
profile picture
전문가
Steve_M
답변함 10달 전
0

Steve, While you didn't solve the opsworks problem, you did show me that I overlooked the obvious solution in ec2 associate-address. So thanks very much.

jon

JL
답변함 10달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠