1. Packages
  2. Heroku Provider
  3. API Docs
  4. domain
  5. Domain
Heroku v1.0.4 published on Tuesday, Apr 8, 2025 by pulumiverse - Marcel Arns

heroku.domain.Domain

Explore with Pulumi AI

heroku logo
Heroku v1.0.4 published on Tuesday, Apr 8, 2025 by pulumiverse - Marcel Arns

    Create Domain Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Domain(name: string, args: DomainArgs, opts?: CustomResourceOptions);
    @overload
    def Domain(resource_name: str,
               args: DomainArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Domain(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               app_id: Optional[str] = None,
               hostname: Optional[str] = None,
               sni_endpoint_id: Optional[str] = None)
    func NewDomain(ctx *Context, name string, args DomainArgs, opts ...ResourceOption) (*Domain, error)
    public Domain(string name, DomainArgs args, CustomResourceOptions? opts = null)
    public Domain(String name, DomainArgs args)
    public Domain(String name, DomainArgs args, CustomResourceOptions options)
    
    type: heroku:domain:Domain
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DomainArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DomainArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DomainArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var domainResource = new Heroku.Domain.Domain("domainResource", new()
    {
        AppId = "string",
        Hostname = "string",
        SniEndpointId = "string",
    });
    
    example, err := domain.NewDomain(ctx, "domainResource", &domain.DomainArgs{
    	AppId:         pulumi.String("string"),
    	Hostname:      pulumi.String("string"),
    	SniEndpointId: pulumi.String("string"),
    })
    
    var domainResource = new Domain("domainResource", DomainArgs.builder()
        .appId("string")
        .hostname("string")
        .sniEndpointId("string")
        .build());
    
    domain_resource = heroku.domain.Domain("domainResource",
        app_id="string",
        hostname="string",
        sni_endpoint_id="string")
    
    const domainResource = new heroku.domain.Domain("domainResource", {
        appId: "string",
        hostname: "string",
        sniEndpointId: "string",
    });
    
    type: heroku:domain:Domain
    properties:
        appId: string
        hostname: string
        sniEndpointId: string
    

    Domain Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Domain resource accepts the following input properties:

    AppId string

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    Hostname string
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    SniEndpointId string
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    AppId string

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    Hostname string
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    SniEndpointId string
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    appId String

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    hostname String
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sniEndpointId String
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    appId string

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    hostname string
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sniEndpointId string
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    app_id str

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    hostname str
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sni_endpoint_id str
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    appId String

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    hostname String
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sniEndpointId String
    The ID of the heroku.ssl.Ssl resource to associate the domain with.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Domain resource produces the following output properties:

    Cname string
    The CNAME traffic should route to.
    Id string
    The provider-assigned unique ID for this managed resource.
    Cname string
    The CNAME traffic should route to.
    Id string
    The provider-assigned unique ID for this managed resource.
    cname String
    The CNAME traffic should route to.
    id String
    The provider-assigned unique ID for this managed resource.
    cname string
    The CNAME traffic should route to.
    id string
    The provider-assigned unique ID for this managed resource.
    cname str
    The CNAME traffic should route to.
    id str
    The provider-assigned unique ID for this managed resource.
    cname String
    The CNAME traffic should route to.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Domain Resource

    Get an existing Domain resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DomainState, opts?: CustomResourceOptions): Domain
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_id: Optional[str] = None,
            cname: Optional[str] = None,
            hostname: Optional[str] = None,
            sni_endpoint_id: Optional[str] = None) -> Domain
    func GetDomain(ctx *Context, name string, id IDInput, state *DomainState, opts ...ResourceOption) (*Domain, error)
    public static Domain Get(string name, Input<string> id, DomainState? state, CustomResourceOptions? opts = null)
    public static Domain get(String name, Output<String> id, DomainState state, CustomResourceOptions options)
    resources:  _:    type: heroku:domain:Domain    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AppId string

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    Cname string
    The CNAME traffic should route to.
    Hostname string
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    SniEndpointId string
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    AppId string

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    Cname string
    The CNAME traffic should route to.
    Hostname string
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    SniEndpointId string
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    appId String

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    cname String
    The CNAME traffic should route to.
    hostname String
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sniEndpointId String
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    appId string

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    cname string
    The CNAME traffic should route to.
    hostname string
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sniEndpointId string
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    app_id str

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    cname str
    The CNAME traffic should route to.
    hostname str
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sni_endpoint_id str
    The ID of the heroku.ssl.Ssl resource to associate the domain with.
    appId String

    Heroku app ID (do not use app name)

    For apps with ACM enabled (automated certificate management):

    cname String
    The CNAME traffic should route to.
    hostname String
    Must match common name or a subject alternative name of certificate in the heroku.ssl.Ssl resource references by sni_endpoint_id.
    sniEndpointId String
    The ID of the heroku.ssl.Ssl resource to associate the domain with.

    Package Details

    Repository
    heroku pulumiverse/pulumi-heroku
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the heroku Terraform Provider.
    heroku logo
    Heroku v1.0.4 published on Tuesday, Apr 8, 2025 by pulumiverse - Marcel Arns