这真的很奇怪。我正在使用 salt-cloud 将一些 windows 2012 服务器启动到 EC2 中。而且我正在使用这个配置文件:
ec2_private_win_app1:
provider: company-nonpod-us-east-1
image: ami-xxxxxx
size: c4.large
network_interfaces:
- DeviceIndex: 0
PrivateIpAddresses:
- Primary: True
#auto assign public ip (not EIP)
AssociatePublicIpAddress: False
SubnetId: subnet-A
SecurityGroupId: sg-xxxxxx
#block_device_mappings:
# - DeviceName: /dev/sda1
# Ebs.VolumeSize: 120
# Ebs.VolumeType: gp2
# - DeviceName: /dev/sdf
# Ebs.VolumeSize: 100
# Ebs.VolumeType: gp2
tag: {'Engagement': '2112254190125', 'Owner': 'Tim', 'Name': 'production'}
并给出这个命令:
salt-cloud -p ec2_private_win_app1 USAB00005
生成的服务器最终位于 AWS 的此子网中:
Subnet ID: subnet-B
我正在使用盐云版本:salt-cloud 2016.9.0-410-gdedfd82
在运行的服务器上:CentOS Linux release 7.2.1511
到底是怎么回事?