1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. LighthouseShareBlueprintAcrossAccountAttachment
Viewing docs for tencentcloud 1.83.2
published on Monday, Jun 15, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.2
published on Monday, Jun 15, 2026 by tencentcloudstack

    Provides a resource to create a lighthouse share blueprint across account attachment share

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const shareBlueprintAcrossAccountAttachment = new tencentcloud.LighthouseShareBlueprintAcrossAccountAttachment("share_blueprint_across_account_attachment", {
        blueprintId: "lhbp-xxxxxx",
        accountIds: ["100012345678"],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    share_blueprint_across_account_attachment = tencentcloud.LighthouseShareBlueprintAcrossAccountAttachment("share_blueprint_across_account_attachment",
        blueprint_id="lhbp-xxxxxx",
        account_ids=["100012345678"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewLighthouseShareBlueprintAcrossAccountAttachment(ctx, "share_blueprint_across_account_attachment", &tencentcloud.LighthouseShareBlueprintAcrossAccountAttachmentArgs{
    			BlueprintId: pulumi.String("lhbp-xxxxxx"),
    			AccountIds: pulumi.StringArray{
    				pulumi.String("100012345678"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var shareBlueprintAcrossAccountAttachment = new Tencentcloud.LighthouseShareBlueprintAcrossAccountAttachment("share_blueprint_across_account_attachment", new()
        {
            BlueprintId = "lhbp-xxxxxx",
            AccountIds = new[]
            {
                "100012345678",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.LighthouseShareBlueprintAcrossAccountAttachment;
    import com.pulumi.tencentcloud.LighthouseShareBlueprintAcrossAccountAttachmentArgs;
    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) {
            var shareBlueprintAcrossAccountAttachment = new LighthouseShareBlueprintAcrossAccountAttachment("shareBlueprintAcrossAccountAttachment", LighthouseShareBlueprintAcrossAccountAttachmentArgs.builder()
                .blueprintId("lhbp-xxxxxx")
                .accountIds("100012345678")
                .build());
    
        }
    }
    
    resources:
      shareBlueprintAcrossAccountAttachment:
        type: tencentcloud:LighthouseShareBlueprintAcrossAccountAttachment
        name: share_blueprint_across_account_attachment
        properties:
          blueprintId: lhbp-xxxxxx
          accountIds:
            - '100012345678'
    
    Example coming soon!
    

    Create LighthouseShareBlueprintAcrossAccountAttachment Resource

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

    Constructor syntax

    new LighthouseShareBlueprintAcrossAccountAttachment(name: string, args: LighthouseShareBlueprintAcrossAccountAttachmentArgs, opts?: CustomResourceOptions);
    @overload
    def LighthouseShareBlueprintAcrossAccountAttachment(resource_name: str,
                                                        args: LighthouseShareBlueprintAcrossAccountAttachmentArgs,
                                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def LighthouseShareBlueprintAcrossAccountAttachment(resource_name: str,
                                                        opts: Optional[ResourceOptions] = None,
                                                        account_ids: Optional[Sequence[str]] = None,
                                                        blueprint_id: Optional[str] = None,
                                                        lighthouse_share_blueprint_across_account_attachment_id: Optional[str] = None)
    func NewLighthouseShareBlueprintAcrossAccountAttachment(ctx *Context, name string, args LighthouseShareBlueprintAcrossAccountAttachmentArgs, opts ...ResourceOption) (*LighthouseShareBlueprintAcrossAccountAttachment, error)
    public LighthouseShareBlueprintAcrossAccountAttachment(string name, LighthouseShareBlueprintAcrossAccountAttachmentArgs args, CustomResourceOptions? opts = null)
    public LighthouseShareBlueprintAcrossAccountAttachment(String name, LighthouseShareBlueprintAcrossAccountAttachmentArgs args)
    public LighthouseShareBlueprintAcrossAccountAttachment(String name, LighthouseShareBlueprintAcrossAccountAttachmentArgs args, CustomResourceOptions options)
    
    type: tencentcloud:LighthouseShareBlueprintAcrossAccountAttachment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_lighthouseshareblueprintacrossaccountattachment" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args LighthouseShareBlueprintAcrossAccountAttachmentArgs
    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 LighthouseShareBlueprintAcrossAccountAttachmentArgs
    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 LighthouseShareBlueprintAcrossAccountAttachmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LighthouseShareBlueprintAcrossAccountAttachmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LighthouseShareBlueprintAcrossAccountAttachmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    LighthouseShareBlueprintAcrossAccountAttachment 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 LighthouseShareBlueprintAcrossAccountAttachment resource accepts the following input properties:

    AccountIds List<string>
    List of target TencentCloud account IDs to share the blueprint with.
    BlueprintId string
    Lighthouse blueprint ID.
    LighthouseShareBlueprintAcrossAccountAttachmentId string
    ID of the resource.
    AccountIds []string
    List of target TencentCloud account IDs to share the blueprint with.
    BlueprintId string
    Lighthouse blueprint ID.
    LighthouseShareBlueprintAcrossAccountAttachmentId string
    ID of the resource.
    account_ids list(string)
    List of target TencentCloud account IDs to share the blueprint with.
    blueprint_id string
    Lighthouse blueprint ID.
    lighthouse_share_blueprint_across_account_attachment_id string
    ID of the resource.
    accountIds List<String>
    List of target TencentCloud account IDs to share the blueprint with.
    blueprintId String
    Lighthouse blueprint ID.
    lighthouseShareBlueprintAcrossAccountAttachmentId String
    ID of the resource.
    accountIds string[]
    List of target TencentCloud account IDs to share the blueprint with.
    blueprintId string
    Lighthouse blueprint ID.
    lighthouseShareBlueprintAcrossAccountAttachmentId string
    ID of the resource.
    account_ids Sequence[str]
    List of target TencentCloud account IDs to share the blueprint with.
    blueprint_id str
    Lighthouse blueprint ID.
    lighthouse_share_blueprint_across_account_attachment_id str
    ID of the resource.
    accountIds List<String>
    List of target TencentCloud account IDs to share the blueprint with.
    blueprintId String
    Lighthouse blueprint ID.
    lighthouseShareBlueprintAcrossAccountAttachmentId String
    ID of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the LighthouseShareBlueprintAcrossAccountAttachment 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 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 LighthouseShareBlueprintAcrossAccountAttachment Resource

    Get an existing LighthouseShareBlueprintAcrossAccountAttachment 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?: LighthouseShareBlueprintAcrossAccountAttachmentState, opts?: CustomResourceOptions): LighthouseShareBlueprintAcrossAccountAttachment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_ids: Optional[Sequence[str]] = None,
            blueprint_id: Optional[str] = None,
            lighthouse_share_blueprint_across_account_attachment_id: Optional[str] = None) -> LighthouseShareBlueprintAcrossAccountAttachment
    func GetLighthouseShareBlueprintAcrossAccountAttachment(ctx *Context, name string, id IDInput, state *LighthouseShareBlueprintAcrossAccountAttachmentState, opts ...ResourceOption) (*LighthouseShareBlueprintAcrossAccountAttachment, error)
    public static LighthouseShareBlueprintAcrossAccountAttachment Get(string name, Input<string> id, LighthouseShareBlueprintAcrossAccountAttachmentState? state, CustomResourceOptions? opts = null)
    public static LighthouseShareBlueprintAcrossAccountAttachment get(String name, Output<String> id, LighthouseShareBlueprintAcrossAccountAttachmentState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:LighthouseShareBlueprintAcrossAccountAttachment    get:      id: ${id}
    import {
      to = tencentcloud_lighthouseshareblueprintacrossaccountattachment.example
      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:
    AccountIds List<string>
    List of target TencentCloud account IDs to share the blueprint with.
    BlueprintId string
    Lighthouse blueprint ID.
    LighthouseShareBlueprintAcrossAccountAttachmentId string
    ID of the resource.
    AccountIds []string
    List of target TencentCloud account IDs to share the blueprint with.
    BlueprintId string
    Lighthouse blueprint ID.
    LighthouseShareBlueprintAcrossAccountAttachmentId string
    ID of the resource.
    account_ids list(string)
    List of target TencentCloud account IDs to share the blueprint with.
    blueprint_id string
    Lighthouse blueprint ID.
    lighthouse_share_blueprint_across_account_attachment_id string
    ID of the resource.
    accountIds List<String>
    List of target TencentCloud account IDs to share the blueprint with.
    blueprintId String
    Lighthouse blueprint ID.
    lighthouseShareBlueprintAcrossAccountAttachmentId String
    ID of the resource.
    accountIds string[]
    List of target TencentCloud account IDs to share the blueprint with.
    blueprintId string
    Lighthouse blueprint ID.
    lighthouseShareBlueprintAcrossAccountAttachmentId string
    ID of the resource.
    account_ids Sequence[str]
    List of target TencentCloud account IDs to share the blueprint with.
    blueprint_id str
    Lighthouse blueprint ID.
    lighthouse_share_blueprint_across_account_attachment_id str
    ID of the resource.
    accountIds List<String>
    List of target TencentCloud account IDs to share the blueprint with.
    blueprintId String
    Lighthouse blueprint ID.
    lighthouseShareBlueprintAcrossAccountAttachmentId String
    ID of the resource.

    Import

    tencentcloud_lighthouse_share_blueprint_across_account_attachment can be imported using the blueprint_id, e.g.

    $ pulumi import tencentcloud:index/lighthouseShareBlueprintAcrossAccountAttachment:LighthouseShareBlueprintAcrossAccountAttachment share_blueprint_across_account_attachment lhbp-xxxxxx
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    Viewing docs for tencentcloud 1.83.2
    published on Monday, Jun 15, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial