Auth0 v3.7.1 published on Thursday, Sep 12, 2024 by Pulumi
auth0.getBranding
Explore with Pulumi AI
Use this data source to access information about the tenant’s branding settings.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as auth0 from "@pulumi/auth0";
const myBranding = auth0.getBranding({});
import pulumi
import pulumi_auth0 as auth0
my_branding = auth0.get_branding()
package main
import (
"github.com/pulumi/pulumi-auth0/sdk/v3/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
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Auth0 = Pulumi.Auth0;
return await Deployment.RunAsync(() =>
{
var myBranding = Auth0.GetBranding.Invoke();
});
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();
}
}
variables:
myBranding:
fn::invoke:
Function: auth0:getBranding
Arguments: {}
Using getBranding
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getBranding(opts?: InvokeOptions): Promise<GetBrandingResult>
function getBrandingOutput(opts?: InvokeOptions): Output<GetBrandingResult>
def get_branding(opts: Optional[InvokeOptions] = None) -> GetBrandingResult
def get_branding_output(opts: Optional[InvokeOptions] = None) -> Output[GetBrandingResult]
func LookupBranding(ctx *Context, opts ...InvokeOption) (*LookupBrandingResult, error)
func LookupBrandingOutput(ctx *Context, opts ...InvokeOption) LookupBrandingResultOutput
> Note: This function is named LookupBranding
in the Go SDK.
public static class GetBranding
{
public static Task<GetBrandingResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetBrandingResult> Invoke(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 - Background color of login pages in hexadecimal.
- Primary string
- Primary button background color in hexadecimal.
- Page
Background string - Background color of login pages in hexadecimal.
- Primary string
- Primary button background color in hexadecimal.
- page
Background String - Background color of login pages in hexadecimal.
- primary String
- Primary button background color in hexadecimal.
- page
Background string - Background color of login pages in hexadecimal.
- primary string
- Primary button background color in hexadecimal.
- page_
background str - Background color of login pages in hexadecimal.
- primary str
- Primary button background color in hexadecimal.
- page
Background String - Background color of login pages in hexadecimal.
- primary String
- Primary button background color in hexadecimal.
GetBrandingFont
- Url string
- URL for the custom font.
- Url string
- URL for the custom font.
- url String
- URL for the custom font.
- url string
- URL for the custom font.
- url str
- URL for the custom font.
- url String
- URL for the custom font.
GetBrandingUniversalLogin
- Body string
- The html template for the New Universal Login Experience.
- Body string
- The html template for the New Universal Login Experience.
- body String
- The html template for the New Universal Login Experience.
- body string
- The html template for the New Universal Login Experience.
- body str
- The html template for the New Universal Login Experience.
- body String
- The html template for the New Universal Login Experience.
Package Details
- Repository
- Auth0 pulumi/pulumi-auth0
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
auth0
Terraform Provider.