()
| 205 | } |
| 206 | |
| 207 | func ErrorUnableToFindCredentials() error { |
| 208 | return errors.WithStack(&errors.Error{ |
| 209 | Kind: ErrUnableToFindCredentials, |
| 210 | Message: "unable to find aws credentials; instructions about configuring aws credentials can be found at https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html", |
| 211 | }) |
| 212 | } |
| 213 | |
| 214 | func ErrorNATGatewayLimitExceeded(currentLimit, additionalQuotaRequired int, availabilityZones []string, region string) error { |
| 215 | url := "https://console.aws.amazon.com/servicequotas/home?#!/services/vpc/quotas" |
no test coverage detected