Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit ed47d45

Browse files
committed
add readme to rpevent warning
1 parent 97b2af4 commit ed47d45

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

examples/complete/README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# URL Parser Complete example
2+
3+
You can run `terraform plan` to see what this example does.
4+
5+
```
6+
Changes to Outputs:
7+
+ full_path_and_params = "/pathquery1=1&query2=2frag"
8+
+ url_full_all_parts = {
9+
+ anchor = "frag"
10+
+ hostname = "user:pass@www.example.com:8080"
11+
+ path = "/path"
12+
+ protocol = "http"
13+
+ query = "query1=1&query2=2"
14+
}
15+
+ url_full_anchor = "frag"
16+
+ url_full_hostname = "user:pass@www.example.com:8080"
17+
+ url_full_path = "/path"
18+
+ url_full_protocol = "http"
19+
+ url_full_query = "query1=1&query2=2"
20+
+ url_minimal_all_parts = {
21+
+ anchor = null
22+
+ hostname = "example.com"
23+
+ path = ""
24+
+ protocol = "https"
25+
+ query = null
26+
}
27+
+ url_with_path_all_parts = {
28+
+ anchor = null
29+
+ hostname = "www.example.com"
30+
+ path = "/path"
31+
+ protocol = "https"
32+
+ query = null
33+
}
34+
```

0 commit comments

Comments
 (0)