We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Lighthouse Definition.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var contributor = Output.Create(Azure.Authorization.GetRoleDefinition.InvokeAsync(new Azure.Authorization.GetRoleDefinitionArgs
{
RoleDefinitionId = "b24988ac-6180-42a0-ab88-20f7382dd24c",
}));
var example = new Azure.Lighthouse.Definition("example", new Azure.Lighthouse.DefinitionArgs
{
Description = "This is a lighthouse definition created IaC",
ManagingTenantId = "00000000-0000-0000-0000-000000000000",
Scope = "/subscriptions/00000000-0000-0000-0000-000000000000",
Authorizations =
{
new Azure.Lighthouse.Inputs.DefinitionAuthorizationArgs
{
PrincipalId = "00000000-0000-0000-0000-000000000000",
RoleDefinitionId = contributor.Apply(contributor => contributor.RoleDefinitionId),
PrincipalDisplayName = "Tier 1 Support",
},
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/authorization"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/lighthouse"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
contributor, err := authorization.LookupRoleDefinition(ctx, &authorization.LookupRoleDefinitionArgs{
RoleDefinitionId: pulumi.StringRef("b24988ac-6180-42a0-ab88-20f7382dd24c"),
}, nil)
if err != nil {
return err
}
_, err = lighthouse.NewDefinition(ctx, "example", &lighthouse.DefinitionArgs{
Description: pulumi.String("This is a lighthouse definition created IaC"),
ManagingTenantId: pulumi.String("00000000-0000-0000-0000-000000000000"),
Scope: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000"),
Authorizations: lighthouse.DefinitionAuthorizationArray{
&lighthouse.DefinitionAuthorizationArgs{
PrincipalId: pulumi.String("00000000-0000-0000-0000-000000000000"),
RoleDefinitionId: pulumi.String(contributor.RoleDefinitionId),
PrincipalDisplayName: pulumi.String("Tier 1 Support"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const contributor = azure.authorization.getRoleDefinition({
roleDefinitionId: "b24988ac-6180-42a0-ab88-20f7382dd24c",
});
const example = new azure.lighthouse.Definition("example", {
description: "This is a lighthouse definition created IaC",
managingTenantId: "00000000-0000-0000-0000-000000000000",
scope: "/subscriptions/00000000-0000-0000-0000-000000000000",
authorizations: [{
principalId: "00000000-0000-0000-0000-000000000000",
roleDefinitionId: contributor.then(contributor => contributor.roleDefinitionId),
principalDisplayName: "Tier 1 Support",
}],
});
import pulumi
import pulumi_azure as azure
contributor = azure.authorization.get_role_definition(role_definition_id="b24988ac-6180-42a0-ab88-20f7382dd24c")
example = azure.lighthouse.Definition("example",
description="This is a lighthouse definition created IaC",
managing_tenant_id="00000000-0000-0000-0000-000000000000",
scope="/subscriptions/00000000-0000-0000-0000-000000000000",
authorizations=[azure.lighthouse.DefinitionAuthorizationArgs(
principal_id="00000000-0000-0000-0000-000000000000",
role_definition_id=contributor.role_definition_id,
principal_display_name="Tier 1 Support",
)])
Example coming soon!
Create Definition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Definition(name: string, args: DefinitionArgs, opts?: CustomResourceOptions);@overload
def Definition(resource_name: str,
args: DefinitionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Definition(resource_name: str,
opts: Optional[ResourceOptions] = None,
authorizations: Optional[Sequence[DefinitionAuthorizationArgs]] = None,
managing_tenant_id: Optional[str] = None,
scope: Optional[str] = None,
description: Optional[str] = None,
lighthouse_definition_id: Optional[str] = None,
name: Optional[str] = None,
plan: Optional[DefinitionPlanArgs] = None)func NewDefinition(ctx *Context, name string, args DefinitionArgs, opts ...ResourceOption) (*Definition, error)public Definition(string name, DefinitionArgs args, CustomResourceOptions? opts = null)
public Definition(String name, DefinitionArgs args)
public Definition(String name, DefinitionArgs args, CustomResourceOptions options)
type: azure:lighthouse:Definition
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 DefinitionArgs
- 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 DefinitionArgs
- 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 DefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DefinitionArgs
- 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 definitionResource = new Azure.Lighthouse.Definition("definitionResource", new()
{
Authorizations = new[]
{
new Azure.Lighthouse.Inputs.DefinitionAuthorizationArgs
{
PrincipalId = "string",
RoleDefinitionId = "string",
DelegatedRoleDefinitionIds = new[]
{
"string",
},
PrincipalDisplayName = "string",
},
},
ManagingTenantId = "string",
Scope = "string",
Description = "string",
LighthouseDefinitionId = "string",
Name = "string",
Plan = new Azure.Lighthouse.Inputs.DefinitionPlanArgs
{
Name = "string",
Product = "string",
Publisher = "string",
Version = "string",
},
});
example, err := lighthouse.NewDefinition(ctx, "definitionResource", &lighthouse.DefinitionArgs{
Authorizations: lighthouse.DefinitionAuthorizationArray{
&lighthouse.DefinitionAuthorizationArgs{
PrincipalId: pulumi.String("string"),
RoleDefinitionId: pulumi.String("string"),
DelegatedRoleDefinitionIds: pulumi.StringArray{
pulumi.String("string"),
},
PrincipalDisplayName: pulumi.String("string"),
},
},
ManagingTenantId: pulumi.String("string"),
Scope: pulumi.String("string"),
Description: pulumi.String("string"),
LighthouseDefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
Plan: &lighthouse.DefinitionPlanArgs{
Name: pulumi.String("string"),
Product: pulumi.String("string"),
Publisher: pulumi.String("string"),
Version: pulumi.String("string"),
},
})
var definitionResource = new com.pulumi.azure.lighthouse.Definition("definitionResource", com.pulumi.azure.lighthouse.DefinitionArgs.builder()
.authorizations(DefinitionAuthorizationArgs.builder()
.principalId("string")
.roleDefinitionId("string")
.delegatedRoleDefinitionIds("string")
.principalDisplayName("string")
.build())
.managingTenantId("string")
.scope("string")
.description("string")
.lighthouseDefinitionId("string")
.name("string")
.plan(DefinitionPlanArgs.builder()
.name("string")
.product("string")
.publisher("string")
.version("string")
.build())
.build());
definition_resource = azure.lighthouse.Definition("definitionResource",
authorizations=[{
"principal_id": "string",
"role_definition_id": "string",
"delegated_role_definition_ids": ["string"],
"principal_display_name": "string",
}],
managing_tenant_id="string",
scope="string",
description="string",
lighthouse_definition_id="string",
name="string",
plan={
"name": "string",
"product": "string",
"publisher": "string",
"version": "string",
})
const definitionResource = new azure.lighthouse.Definition("definitionResource", {
authorizations: [{
principalId: "string",
roleDefinitionId: "string",
delegatedRoleDefinitionIds: ["string"],
principalDisplayName: "string",
}],
managingTenantId: "string",
scope: "string",
description: "string",
lighthouseDefinitionId: "string",
name: "string",
plan: {
name: "string",
product: "string",
publisher: "string",
version: "string",
},
});
type: azure:lighthouse:Definition
properties:
authorizations:
- delegatedRoleDefinitionIds:
- string
principalDisplayName: string
principalId: string
roleDefinitionId: string
description: string
lighthouseDefinitionId: string
managingTenantId: string
name: string
plan:
name: string
product: string
publisher: string
version: string
scope: string
Definition 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 Definition resource accepts the following input properties:
-
List<Definition
Authorization> - An authorization block as defined below.
- Managing
Tenant stringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- Scope string
- The ID of the managed subscription. Changing this forces a new resource to be created.
- Description string
- A description of the Lighthouse Definition.
- Lighthouse
Definition stringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- Name string
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- Plan
Definition
Plan - A
planblock as defined below.
-
[]Definition
Authorization Args - An authorization block as defined below.
- Managing
Tenant stringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- Scope string
- The ID of the managed subscription. Changing this forces a new resource to be created.
- Description string
- A description of the Lighthouse Definition.
- Lighthouse
Definition stringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- Name string
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- Plan
Definition
Plan Args - A
planblock as defined below.
-
List<Definition
Authorization> - An authorization block as defined below.
- managing
Tenant StringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- scope String
- The ID of the managed subscription. Changing this forces a new resource to be created.
- description String
- A description of the Lighthouse Definition.
- lighthouse
Definition StringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- name String
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan
Definition
Plan - A
planblock as defined below.
-
Definition
Authorization[] - An authorization block as defined below.
- managing
Tenant stringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- scope string
- The ID of the managed subscription. Changing this forces a new resource to be created.
- description string
- A description of the Lighthouse Definition.
- lighthouse
Definition stringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- name string
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan
Definition
Plan - A
planblock as defined below.
-
Sequence[Definition
Authorization Args] - An authorization block as defined below.
- managing_
tenant_ strid - The ID of the managing tenant. Changing this forces a new resource to be created.
- scope str
- The ID of the managed subscription. Changing this forces a new resource to be created.
- description str
- A description of the Lighthouse Definition.
- lighthouse_
definition_ strid - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- name str
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan
Definition
Plan Args - A
planblock as defined below.
- List<Property Map>
- An authorization block as defined below.
- managing
Tenant StringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- scope String
- The ID of the managed subscription. Changing this forces a new resource to be created.
- description String
- A description of the Lighthouse Definition.
- lighthouse
Definition StringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- name String
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan Property Map
- A
planblock as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the Definition resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Definition Resource
Get an existing Definition 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?: DefinitionState, opts?: CustomResourceOptions): Definition@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authorizations: Optional[Sequence[DefinitionAuthorizationArgs]] = None,
description: Optional[str] = None,
lighthouse_definition_id: Optional[str] = None,
managing_tenant_id: Optional[str] = None,
name: Optional[str] = None,
plan: Optional[DefinitionPlanArgs] = None,
scope: Optional[str] = None) -> Definitionfunc GetDefinition(ctx *Context, name string, id IDInput, state *DefinitionState, opts ...ResourceOption) (*Definition, error)public static Definition Get(string name, Input<string> id, DefinitionState? state, CustomResourceOptions? opts = null)public static Definition get(String name, Output<String> id, DefinitionState state, CustomResourceOptions options)resources: _: type: azure:lighthouse:Definition 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.
-
List<Definition
Authorization> - An authorization block as defined below.
- Description string
- A description of the Lighthouse Definition.
- Lighthouse
Definition stringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- Managing
Tenant stringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- Name string
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- Plan
Definition
Plan - A
planblock as defined below. - Scope string
- The ID of the managed subscription. Changing this forces a new resource to be created.
-
[]Definition
Authorization Args - An authorization block as defined below.
- Description string
- A description of the Lighthouse Definition.
- Lighthouse
Definition stringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- Managing
Tenant stringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- Name string
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- Plan
Definition
Plan Args - A
planblock as defined below. - Scope string
- The ID of the managed subscription. Changing this forces a new resource to be created.
-
List<Definition
Authorization> - An authorization block as defined below.
- description String
- A description of the Lighthouse Definition.
- lighthouse
Definition StringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- managing
Tenant StringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- name String
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan
Definition
Plan - A
planblock as defined below. - scope String
- The ID of the managed subscription. Changing this forces a new resource to be created.
-
Definition
Authorization[] - An authorization block as defined below.
- description string
- A description of the Lighthouse Definition.
- lighthouse
Definition stringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- managing
Tenant stringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- name string
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan
Definition
Plan - A
planblock as defined below. - scope string
- The ID of the managed subscription. Changing this forces a new resource to be created.
-
Sequence[Definition
Authorization Args] - An authorization block as defined below.
- description str
- A description of the Lighthouse Definition.
- lighthouse_
definition_ strid - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- managing_
tenant_ strid - The ID of the managing tenant. Changing this forces a new resource to be created.
- name str
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan
Definition
Plan Args - A
planblock as defined below. - scope str
- The ID of the managed subscription. Changing this forces a new resource to be created.
- List<Property Map>
- An authorization block as defined below.
- description String
- A description of the Lighthouse Definition.
- lighthouse
Definition StringId - A unique UUID/GUID which identifies this lighthouse definition - one will be generated if not specified. Changing this forces a new resource to be created.
- managing
Tenant StringId - The ID of the managing tenant. Changing this forces a new resource to be created.
- name String
- The name of the Lighthouse Definition. Changing this forces a new resource to be created.
- plan Property Map
- A
planblock as defined below. - scope String
- The ID of the managed subscription. Changing this forces a new resource to be created.
Supporting Types
DefinitionAuthorization, DefinitionAuthorizationArgs
- Principal
Id string - Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
- Role
Definition stringId - The role definition identifier. This role will define the permissions that are granted to the principal. This cannot be an
Ownerrole. - Delegated
Role List<string>Definition Ids - The set of role definition ids which define all the permissions that the principal id can assign.
- Principal
Display stringName - The display name of the security group/service principal/user that would be assigned permissions to the projected subscription.
- Principal
Id string - Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
- Role
Definition stringId - The role definition identifier. This role will define the permissions that are granted to the principal. This cannot be an
Ownerrole. - Delegated
Role []stringDefinition Ids - The set of role definition ids which define all the permissions that the principal id can assign.
- Principal
Display stringName - The display name of the security group/service principal/user that would be assigned permissions to the projected subscription.
- principal
Id String - Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
- role
Definition StringId - The role definition identifier. This role will define the permissions that are granted to the principal. This cannot be an
Ownerrole. - delegated
Role List<String>Definition Ids - The set of role definition ids which define all the permissions that the principal id can assign.
- principal
Display StringName - The display name of the security group/service principal/user that would be assigned permissions to the projected subscription.
- principal
Id string - Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
- role
Definition stringId - The role definition identifier. This role will define the permissions that are granted to the principal. This cannot be an
Ownerrole. - delegated
Role string[]Definition Ids - The set of role definition ids which define all the permissions that the principal id can assign.
- principal
Display stringName - The display name of the security group/service principal/user that would be assigned permissions to the projected subscription.
- principal_
id str - Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
- role_
definition_ strid - The role definition identifier. This role will define the permissions that are granted to the principal. This cannot be an
Ownerrole. - delegated_
role_ Sequence[str]definition_ ids - The set of role definition ids which define all the permissions that the principal id can assign.
- principal_
display_ strname - The display name of the security group/service principal/user that would be assigned permissions to the projected subscription.
- principal
Id String - Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
- role
Definition StringId - The role definition identifier. This role will define the permissions that are granted to the principal. This cannot be an
Ownerrole. - delegated
Role List<String>Definition Ids - The set of role definition ids which define all the permissions that the principal id can assign.
- principal
Display StringName - The display name of the security group/service principal/user that would be assigned permissions to the projected subscription.
DefinitionPlan, DefinitionPlanArgs
Import
Lighthouse Definitions can be imported using the resource id, e.g.
$ pulumi import azure:lighthouse/definition:Definition example /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ManagedServices/registrationDefinitions/00000000-0000-0000-0000-000000000000
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
