답변:
업데이트 : 2014 년 1 월 현재 AWS EC2 인스턴스 실행을위한 보안 그룹을 변경할 수 있습니다.
인스턴스를 마우스 오른쪽 버튼으로 클릭하고 Change Security Group
보안 그룹을 적절하게 추가 / 제거하고 Assign Security Groups
완료되면 클릭
다음 명령을 사용하십시오.
ec2-modify-instance-attribute <instance-id> --group-id <group-id>
다음 명령을 사용하십시오.
aws ec2 modify-instance-attribute --instance-id i-12345 --groups sg-12345 sg-67890
인스턴스와 관련된 모든 보안 그룹을 지정해야합니다.
Change Security Groups
모달에 표시되지 않으면 어떻게합니까?
이제 가능합니다. 작업 메뉴를 클릭하고 보안 그룹 변경-사용하려는 보안 그룹을 선택하십시오.
towo는 인스턴스의 보안 그룹을 변경할 수 없으며 시작 시간을 변경할 수 있다고 말했습니다.
보안 그룹이 EC2 보안 그룹과 다른 VPC를 사용 하지 않는 한 .
이 페이지는 EC2와 VPC 보안 그룹의 차이점을 간략하게 설명합니다.
http://docs.amazonwebservices.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html
따라서 VPC 그룹의 추가 기능 (그룹 변경, 수신 / 수신 트래픽 제어 등)이 필요한 경우 VPC에서 제공하는 추가 기능을 살펴볼 수 있습니다.
boto3을 사용하는 경우 modify_attribute 를 호출 하고 그룹 ID 목록을 전달 해야합니다.
http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Instance.modify_attribute
response = instance.modify_attribute(Groups=['string'])
Groups (list) --
[EC2-VPC] Changes the security groups of the instance. You must
specify at least one security group, even if it's just the default
security group for the VPC. You must specify the security group ID,
not the security group name.