Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Add VPC Limits for C5s
Browse files Browse the repository at this point in the history
  • Loading branch information
sargun committed May 7, 2018
1 parent 90a39ab commit f119fc1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions vpc/limits.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,45 @@ var interfaceLimits = map[string]map[string]limits{
networkThroughput: 20000,
},
},
"c5": {
"large": limits{
interfaces: 3,
ipAddressesPerInterface: 10,
ip6AddressesPerInterface: 10,
// Maybe?
networkThroughput: 1000,
},
"xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 15,
ip6AddressesPerInterface: 15,
networkThroughput: 2000,
},
"2xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 15,
ip6AddressesPerInterface: 15,
networkThroughput: 2000,
},
"4xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 30,
ip6AddressesPerInterface: 30,
networkThroughput: 4000,
},
"9xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 30,
ip6AddressesPerInterface: 30,
networkThroughput: 10000,
},
"18xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 50,
ip6AddressesPerInterface: 50,
networkThroughput: 23000,
},
},
}

// This function will panic if the instance type is unknown
Expand Down

0 comments on commit f119fc1

Please sign in to comment.