auth0.getBranding
Explore with Pulumi AI
Use this data source to access information about the tenant’s branding settings.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
var myBranding = Auth0.GetBranding.Invoke();
});
package main
import (
"github.com/pulumi/pulumi-auth0/sdk/v2/go/auth0"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := auth0.LookupBranding(ctx, nil, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.auth0.Auth0Functions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var myBranding = Auth0Functions.getBranding();
}
}
import pulumi
import pulumi_auth0 as auth0
my_branding = auth0.get_branding()
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const myBranding = auth0.getBranding({});
variables:
myBranding:
fn::invoke:
Function: auth0:getBranding
Arguments: {}
Using getBranding
function getBranding(opts?: InvokeOptions): Promise<GetBrandingResult>
def get_branding(opts: Optional[InvokeOptions] = None) -> GetBrandingResult
func LookupBranding(ctx *Context, opts ...InvokeOption) (*LookupBrandingResult, error)
> Note: This function is named LookupBranding
in the Go SDK.
public static class GetBranding
{
public static Task<GetBrandingResult> InvokeAsync(InvokeOptions? opts = null)
}
public static CompletableFuture<GetBrandingResult> getBranding(InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: auth0:index/getBranding:getBranding
arguments:
# arguments dictionary
getBranding Result
The following output properties are available:
- Colors
List<Get
Branding Color> Configuration settings for colors for branding.
- Favicon
Url string URL for the favicon.
- Fonts
List<Get
Branding Font> Configuration settings to customize the font.
- Id string
The provider-assigned unique ID for this managed resource.
- Logo
Url string URL of logo for branding.
- Universal
Logins List<GetBranding Universal Login> Configuration settings for Universal Login.
- Colors
[]Get
Branding Color Configuration settings for colors for branding.
- Favicon
Url string URL for the favicon.
- Fonts
[]Get
Branding Font Configuration settings to customize the font.
- Id string
The provider-assigned unique ID for this managed resource.
- Logo
Url string URL of logo for branding.
- Universal
Logins []GetBranding Universal Login Configuration settings for Universal Login.
- colors
List<Get
Branding Color> Configuration settings for colors for branding.
- favicon
Url String URL for the favicon.
- fonts
List<Get
Branding Font> Configuration settings to customize the font.
- id String
The provider-assigned unique ID for this managed resource.
- logo
Url String URL of logo for branding.
- universal
Logins List<GetBranding Universal Login> Configuration settings for Universal Login.
- colors
Get
Branding Color[] Configuration settings for colors for branding.
- favicon
Url string URL for the favicon.
- fonts
Get
Branding Font[] Configuration settings to customize the font.
- id string
The provider-assigned unique ID for this managed resource.
- logo
Url string URL of logo for branding.
- universal
Logins GetBranding Universal Login[] Configuration settings for Universal Login.
- colors
Sequence[Get
Branding Color] Configuration settings for colors for branding.
- favicon_
url str URL for the favicon.
- fonts
Sequence[Get
Branding Font] Configuration settings to customize the font.
- id str
The provider-assigned unique ID for this managed resource.
- logo_
url str URL of logo for branding.
- universal_
logins Sequence[GetBranding Universal Login] Configuration settings for Universal Login.
- colors List<Property Map>
Configuration settings for colors for branding.
- favicon
Url String URL for the favicon.
- fonts List<Property Map>
Configuration settings to customize the font.
- id String
The provider-assigned unique ID for this managed resource.
- logo
Url String URL of logo for branding.
- universal
Logins List<Property Map> Configuration settings for Universal Login.
Supporting Types
GetBrandingColor
- Page
Background string - Primary string
- Page
Background string - Primary string
- page
Background String - primary String
- page
Background string - primary string
- page_
background str - primary str
- page
Background String - primary String
GetBrandingFont
- Url string
- Url string
- url String
- url string
- url str
- url String
GetBrandingUniversalLogin
- Body string
- Body string
- body String
- body string
- body str
- body String
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
auth0
Terraform Provider.