我不知道为什么在尝试在salt-master ec2实例上运行sudo salt-cloud -p ec2_east_micro_dev saltcloud_micro_test
时,我仍然遇到同样的错误。我的所有设置看起来都是正确的,但它一直告诉我一个invalidParameterCombination错误。
{'Errors': {'Error': {'Message': 'VPC security groups may not be used for a non-VPC launch', 'Code': 'InvalidParameterCombination'}}
ec2-us-east-1-private:
minion:
master: hostname.of-salt-master.com
id: x
key: 'x'
private_key: /etc/salt/master-key.pem
keyname: salt-minion1
ssh_interface: private_ips
securitygroup: main-securitygroup
location: us-east-1
availability_zone: us-east-1b
driver: ec2
del_root_vol_on_destroy: True
del_all_vols_on_destroy: True
rename_on_destroy: True
谢谢
答案 0 :(得分:0)
您希望使用
指定AWS子网subnetid:
在profiles.conf
中如果没有它,配置文件不知道要在哪个VPC中创建实例,并且启动将失败。
答案 1 :(得分:0)
当您实例化VPC盒时,您应该从提供者配置文件中删除“securitygroup:”,然后在配置文件配置文件中指定“SubnetId:”。工作配置文件配置文件的示例:
db_us_east_1_vpc_pfofile:
provider: ec2-us-east-1-private
image: ami-ad2a91ab
size: m4.large
ssh_username: ubuntu
network_interfaces:
- DeviceIndex: 0
PrivateIpAddresses:
- Primary: True
#auto assign public ip (not EIP)
AssociatePublicIpAddress: True
SubnetId: subnet-ba7e3133
SecurityGroupId: sg-ba655211
del_root_vol_on_destroy: True
del_all_vol_on_destroy: True
tag: {'Environment': 'production', 'Role': 'database', 'Name': 'my_db_box'}
sync_after_install: grains
在saltstack github issue 14963
上进行了讨论