diff --git a/flyctl/cmd/fly_ips.md b/flyctl/cmd/fly_ips.md index 4706b87bef..8082f575cc 100644 --- a/flyctl/cmd/fly_ips.md +++ b/flyctl/cmd/fly_ips.md @@ -7,11 +7,13 @@ fly ips [command] [flags] ## Available Commands * [allocate](/docs/flyctl/ips-allocate/) - Allocate recommended IP addresses +* [allocate-egress](/docs/flyctl/ips-allocate-egress/) - (Beta) Allocate app-scoped egress IPs * [allocate-v4](/docs/flyctl/ips-allocate-v4/) - Allocate an IPv4 address * [allocate-v6](/docs/flyctl/ips-allocate-v6/) - Allocate an IPv6 address * [list](/docs/flyctl/ips-list/) - List allocated IP addresses * [private](/docs/flyctl/ips-private/) - List instances private IP addresses -* [release](/docs/flyctl/ips-release/) - Release IP addresses +* [release](/docs/flyctl/ips-release/) - Release ingress IP addresses +* [release-egress](/docs/flyctl/ips-release-egress/) - Release egress IP addresses ## Options diff --git a/flyctl/cmd/fly_ips_allocate-egress.md b/flyctl/cmd/fly_ips_allocate-egress.md new file mode 100644 index 0000000000..9083f0b657 --- /dev/null +++ b/flyctl/cmd/fly_ips_allocate-egress.md @@ -0,0 +1,29 @@ +(Beta) Allocates a pair of egress IP addresses for an app + +## Usage +~~~ +fly ips allocate-egress [flags] +~~~ + +## Options + +~~~ + -a, --app string Application name + -c, --config string Path to application configuration file + -h, --help help for allocate-egress + -r, --region string The target region (see 'flyctl platform regions') + -y, --yes Accept all confirmations +~~~ + +## Global Options + +~~~ + -t, --access-token string Fly API Access Token + --debug Print additional logs and traces + --verbose Verbose output +~~~ + +## See Also + +* [fly ips](/docs/flyctl/ips/) - Manage IP addresses for apps + diff --git a/flyctl/cmd/fly_ips_release-egress.md b/flyctl/cmd/fly_ips_release-egress.md new file mode 100644 index 0000000000..97ed0d2e14 --- /dev/null +++ b/flyctl/cmd/fly_ips_release-egress.md @@ -0,0 +1,27 @@ +Releases one or more egress IP addresses from the application + +## Usage +~~~ +fly ips release-egress [flags] ADDRESS ADDRESS ... +~~~ + +## Options + +~~~ + -a, --app string Application name + -c, --config string Path to application configuration file + -h, --help help for release-egress +~~~ + +## Global Options + +~~~ + -t, --access-token string Fly API Access Token + --debug Print additional logs and traces + --verbose Verbose output +~~~ + +## See Also + +* [fly ips](/docs/flyctl/ips/) - Manage IP addresses for apps + diff --git a/flyctl/cmd/fly_ips_release.md b/flyctl/cmd/fly_ips_release.md index 3c5a19ba41..f4a7e43bfd 100644 --- a/flyctl/cmd/fly_ips_release.md +++ b/flyctl/cmd/fly_ips_release.md @@ -1,4 +1,4 @@ -Releases one or more IP addresses from the application +Releases one or more ingress IP addresses from the application ## Usage ~~~