-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add alternative url structure section
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,6 +148,15 @@ The following output will be retrieved: | |
} | ||
``` | ||
|
||
#### Alternative URL structure | ||
|
||
If a request cannot be made to a subdomain of `localhost.localstack.cloud`, an alternative URL structure is available, however it is not returned by AWS management API methods. | ||
To make a request against an ELB with id `<elb-id>`, use the URL: | ||
|
||
``` | ||
Check failure on line 156 in content/en/user-guide/aws/elb/index.md GitHub Actions / Markdown LintFenced code blocks should have a language specified
Check failure on line 156 in content/en/user-guide/aws/elb/index.md GitHub Actions / Markdown LintFenced code blocks should have a language specified
|
||
http(s)://localhost.localstack.cloud:4566/_aws/elb/<elb-id>/<elb-path> | ||
``` | ||
|
||
## Examples | ||
|
||
The following code snippets and sample applications provide practical examples of how to use ELB in LocalStack for various use cases: | ||
|