Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AWS] Add Default Region/Zone to Connection and Allow API Calls to Specify Target Zone by #1067 #1135

Merged
merged 3 commits into from
Apr 2, 2024

Conversation

MZC-CSC
Copy link
Contributor

@MZC-CSC MZC-CSC commented Apr 1, 2024

[AWS] Add Default Region/Zone to Connection and Allow API Calls to Specify Target Zone

VPC는 Region base, Subnet은 zone base 이므로
subnet 생성시 zone parameter가 있으면 해당 zone을 사용하도록 보완.
VPCs are based on Regions and Subnets are based on zones, when creating a subnet, if a zone parameter is provided, it should be adjusted to use the specified zone

if reqSubnetInfo.Zone != ""{
zoneId = reqSubnetInfo.Zone
}
Disk는 zone base이므로 생성시 zone parameter가 있으면 해당 zone을 사용하도록 보완.
Disks are based on zones, when creating a disk, if a zone parameter is provided, it should be adjusted to use the specified zone.

if diskReqInfo.Zone != ""{
zone = diskReqInfo.Zone
}

@powerkimhub powerkimhub merged commit e57f3aa into cloud-barista:master Apr 2, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[CONN] Add Default Region/Zone to Connection and Allow API Calls to Specify Target Zone
3 participants