Skip to content

Commit b81d0d6

Browse files
committed
feat: MCA GA - Allow managing default custom domain
1 parent 777c341 commit b81d0d6

16 files changed

Lines changed: 349 additions & 1 deletion

docs/auth0_domains.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ With a custom domain, your users feel confident that they are providing their cr
1010
## Commands
1111

1212
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
13+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
1314
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
1415
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
1516
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

docs/auth0_domains_create.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ auth0 domains create [flags]
5757
## Related Commands
5858

5959
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
60+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
6061
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
6162
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
6263
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

docs/auth0_domains_default.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
layout: default
3+
has_toc: false
4+
has_children: true
5+
---
6+
# auth0 domains default
7+
8+
Manage the default custom domain for the tenant. Use sub-commands to show or set the default domain.
9+
10+
## Commands
11+
12+
- [auth0 domains default set](auth0_domains_default_set.md) - Set the default custom domain
13+
- [auth0 domains default show](auth0_domains_default_show.md) - Show the default custom domain
14+

docs/auth0_domains_default_set.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
layout: default
3+
parent: auth0 domains default
4+
has_toc: false
5+
---
6+
# auth0 domains default set
7+
8+
Set the default custom domain for the tenant.
9+
10+
To set interactively, use `auth0 domains default set` with no arguments.
11+
12+
To set non-interactively, supply the domain name as an argument or through the flag.
13+
14+
## Usage
15+
```
16+
auth0 domains default set [flags]
17+
```
18+
19+
## Examples
20+
21+
```
22+
auth0 domains default set
23+
auth0 domains default set <domain>
24+
auth0 domains default set --domain <domain>
25+
auth0 domains default set --domain <domain> --json
26+
```
27+
28+
29+
## Flags
30+
31+
```
32+
-d, --domain string Domain name.
33+
--json Output in json format.
34+
--json-compact Output in compact json format.
35+
```
36+
37+
38+
## Inherited Flags
39+
40+
```
41+
--debug Enable debug mode.
42+
--no-color Disable colors.
43+
--no-input Disable interactivity.
44+
--tenant string Specific tenant to use.
45+
```
46+
47+
48+
## Related Commands
49+
50+
- [auth0 domains default set](auth0_domains_default_set.md) - Set the default custom domain
51+
- [auth0 domains default show](auth0_domains_default_show.md) - Show the default custom domain
52+
53+

docs/auth0_domains_default_show.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
layout: default
3+
parent: auth0 domains default
4+
has_toc: false
5+
---
6+
# auth0 domains default show
7+
8+
Display the default custom domain configuration for the tenant.
9+
10+
## Usage
11+
```
12+
auth0 domains default show [flags]
13+
```
14+
15+
## Examples
16+
17+
```
18+
auth0 domains default show
19+
auth0 domains default show --json
20+
auth0 domains default show --json-compact
21+
```
22+
23+
24+
## Flags
25+
26+
```
27+
--json Output in json format.
28+
--json-compact Output in compact json format.
29+
```
30+
31+
32+
## Inherited Flags
33+
34+
```
35+
--debug Enable debug mode.
36+
--no-color Disable colors.
37+
--no-input Disable interactivity.
38+
--tenant string Specific tenant to use.
39+
```
40+
41+
42+
## Related Commands
43+
44+
- [auth0 domains default set](auth0_domains_default_set.md) - Set the default custom domain
45+
- [auth0 domains default show](auth0_domains_default_show.md) - Show the default custom domain
46+
47+

docs/auth0_domains_delete.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ auth0 domains delete [flags]
4848
## Related Commands
4949

5050
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
51+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
5152
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
5253
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
5354
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

docs/auth0_domains_list.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ auth0 domains list [flags]
4848
## Related Commands
4949

5050
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
51+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
5152
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
5253
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
5354
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

docs/auth0_domains_show.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ auth0 domains show [flags]
4343
## Related Commands
4444

4545
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
46+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
4647
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
4748
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
4849
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

docs/auth0_domains_update.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ auth0 domains update [flags]
5252
## Related Commands
5353

5454
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
55+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
5556
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
5657
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
5758
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

docs/auth0_domains_verify.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ auth0 domains verify [flags]
4545
## Related Commands
4646

4747
- [auth0 domains create](auth0_domains_create.md) - Create a custom domain
48+
- [auth0 domains default](auth0_domains_default.md) - Manage the default custom domain
4849
- [auth0 domains delete](auth0_domains_delete.md) - Delete a custom domain
4950
- [auth0 domains list](auth0_domains_list.md) - List your custom domains
5051
- [auth0 domains show](auth0_domains_show.md) - Show a custom domain

0 commit comments

Comments
 (0)