bitwarden.ItemLogin
Explore with Pulumi AI
Manages a login item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as bitwarden from "@pulumi/bitwarden";
const terraform = bitwarden.getOrganization({
search: "Terraform",
});
const engineering = bitwarden.getOrgCollection({
search: "Engineering",
});
const databases = bitwarden.getFolder({
search: "Databases",
});
const administrative_user = new bitwarden.ItemLogin("administrative-user", {
username: "admin",
password: "<sensitive>",
folderId: databases.then(databases => databases.id),
organizationId: bitwarden_organization.terraform.id,
collectionIds: [bitwarden_org_collection.engineering.id],
fields: [{
name: "category",
text: "SystemA",
}],
});
import pulumi
import pulumi_bitwarden as bitwarden
terraform = bitwarden.get_organization(search="Terraform")
engineering = bitwarden.get_org_collection(search="Engineering")
databases = bitwarden.get_folder(search="Databases")
administrative_user = bitwarden.ItemLogin("administrative-user",
username="admin",
password="<sensitive>",
folder_id=databases.id,
organization_id=bitwarden_organization["terraform"]["id"],
collection_ids=[bitwarden_org_collection["engineering"]["id"]],
fields=[{
"name": "category",
"text": "SystemA",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/bitwarden/bitwarden"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := bitwarden.GetOrganization(ctx, &bitwarden.GetOrganizationArgs{
Search: pulumi.StringRef("Terraform"),
}, nil)
if err != nil {
return err
}
_, err = bitwarden.LookupOrgCollection(ctx, &bitwarden.LookupOrgCollectionArgs{
Search: pulumi.StringRef("Engineering"),
}, nil)
if err != nil {
return err
}
databases, err := bitwarden.LookupFolder(ctx, &bitwarden.LookupFolderArgs{
Search: pulumi.StringRef("Databases"),
}, nil)
if err != nil {
return err
}
_, err = bitwarden.NewItemLogin(ctx, "administrative-user", &bitwarden.ItemLoginArgs{
Username: pulumi.String("admin"),
Password: pulumi.String("<sensitive>"),
FolderId: pulumi.String(databases.Id),
OrganizationId: pulumi.Any(bitwarden_organization.Terraform.Id),
CollectionIds: pulumi.StringArray{
bitwarden_org_collection.Engineering.Id,
},
Fields: bitwarden.ItemLoginFieldArray{
&bitwarden.ItemLoginFieldArgs{
Name: pulumi.String("category"),
Text: pulumi.String("SystemA"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Bitwarden = Pulumi.Bitwarden;
return await Deployment.RunAsync(() =>
{
var terraform = Bitwarden.GetOrganization.Invoke(new()
{
Search = "Terraform",
});
var engineering = Bitwarden.GetOrgCollection.Invoke(new()
{
Search = "Engineering",
});
var databases = Bitwarden.GetFolder.Invoke(new()
{
Search = "Databases",
});
var administrative_user = new Bitwarden.ItemLogin("administrative-user", new()
{
Username = "admin",
Password = "<sensitive>",
FolderId = databases.Apply(getFolderResult => getFolderResult.Id),
OrganizationId = bitwarden_organization.Terraform.Id,
CollectionIds = new[]
{
bitwarden_org_collection.Engineering.Id,
},
Fields = new[]
{
new Bitwarden.Inputs.ItemLoginFieldArgs
{
Name = "category",
Text = "SystemA",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.bitwarden.BitwardenFunctions;
import com.pulumi.bitwarden.inputs.GetOrganizationArgs;
import com.pulumi.bitwarden.inputs.GetOrgCollectionArgs;
import com.pulumi.bitwarden.inputs.GetFolderArgs;
import com.pulumi.bitwarden.ItemLogin;
import com.pulumi.bitwarden.ItemLoginArgs;
import com.pulumi.bitwarden.inputs.ItemLoginFieldArgs;
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 terraform = BitwardenFunctions.getOrganization(GetOrganizationArgs.builder()
.search("Terraform")
.build());
final var engineering = BitwardenFunctions.getOrgCollection(GetOrgCollectionArgs.builder()
.search("Engineering")
.build());
final var databases = BitwardenFunctions.getFolder(GetFolderArgs.builder()
.search("Databases")
.build());
var administrative_user = new ItemLogin("administrative-user", ItemLoginArgs.builder()
.username("admin")
.password("<sensitive>")
.folderId(databases.applyValue(getFolderResult -> getFolderResult.id()))
.organizationId(bitwarden_organization.terraform().id())
.collectionIds(bitwarden_org_collection.engineering().id())
.fields(ItemLoginFieldArgs.builder()
.name("category")
.text("SystemA")
.build())
.build());
}
}
resources:
administrative-user:
type: bitwarden:ItemLogin
properties:
username: admin
password: <sensitive>
folderId: ${databases.id}
organizationId: ${bitwarden_organization.terraform.id}
collectionIds:
- ${bitwarden_org_collection.engineering.id}
fields:
- name: category
text: SystemA
variables:
terraform:
fn::invoke:
function: bitwarden:getOrganization
arguments:
search: Terraform
engineering:
fn::invoke:
function: bitwarden:getOrgCollection
arguments:
search: Engineering
databases:
fn::invoke:
function: bitwarden:getFolder
arguments:
search: Databases
Create ItemLogin Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ItemLogin(name: string, args?: ItemLoginArgs, opts?: CustomResourceOptions);
@overload
def ItemLogin(resource_name: str,
args: Optional[ItemLoginArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ItemLogin(resource_name: str,
opts: Optional[ResourceOptions] = None,
collection_ids: Optional[Sequence[str]] = None,
favorite: Optional[bool] = None,
fields: Optional[Sequence[ItemLoginFieldArgs]] = None,
folder_id: Optional[str] = None,
item_login_id: Optional[str] = None,
name: Optional[str] = None,
notes: Optional[str] = None,
organization_id: Optional[str] = None,
password: Optional[str] = None,
reprompt: Optional[bool] = None,
totp: Optional[str] = None,
uris: Optional[Sequence[ItemLoginUriArgs]] = None,
username: Optional[str] = None)
func NewItemLogin(ctx *Context, name string, args *ItemLoginArgs, opts ...ResourceOption) (*ItemLogin, error)
public ItemLogin(string name, ItemLoginArgs? args = null, CustomResourceOptions? opts = null)
public ItemLogin(String name, ItemLoginArgs args)
public ItemLogin(String name, ItemLoginArgs args, CustomResourceOptions options)
type: bitwarden:ItemLogin
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 ItemLoginArgs
- 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 ItemLoginArgs
- 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 ItemLoginArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ItemLoginArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ItemLoginArgs
- 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 itemLoginResource = new Bitwarden.ItemLogin("itemLoginResource", new()
{
CollectionIds = new[]
{
"string",
},
Favorite = false,
Fields = new[]
{
new Bitwarden.Inputs.ItemLoginFieldArgs
{
Name = "string",
Boolean = false,
Hidden = "string",
Linked = "string",
Text = "string",
},
},
FolderId = "string",
ItemLoginId = "string",
Name = "string",
Notes = "string",
OrganizationId = "string",
Password = "string",
Reprompt = false,
Totp = "string",
Uris = new[]
{
new Bitwarden.Inputs.ItemLoginUriArgs
{
Value = "string",
Match = "string",
},
},
Username = "string",
});
example, err := bitwarden.NewItemLogin(ctx, "itemLoginResource", &bitwarden.ItemLoginArgs{
CollectionIds: pulumi.StringArray{
pulumi.String("string"),
},
Favorite: pulumi.Bool(false),
Fields: bitwarden.ItemLoginFieldArray{
&bitwarden.ItemLoginFieldArgs{
Name: pulumi.String("string"),
Boolean: pulumi.Bool(false),
Hidden: pulumi.String("string"),
Linked: pulumi.String("string"),
Text: pulumi.String("string"),
},
},
FolderId: pulumi.String("string"),
ItemLoginId: pulumi.String("string"),
Name: pulumi.String("string"),
Notes: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
Password: pulumi.String("string"),
Reprompt: pulumi.Bool(false),
Totp: pulumi.String("string"),
Uris: bitwarden.ItemLoginUriArray{
&bitwarden.ItemLoginUriArgs{
Value: pulumi.String("string"),
Match: pulumi.String("string"),
},
},
Username: pulumi.String("string"),
})
var itemLoginResource = new ItemLogin("itemLoginResource", ItemLoginArgs.builder()
.collectionIds("string")
.favorite(false)
.fields(ItemLoginFieldArgs.builder()
.name("string")
.boolean_(false)
.hidden("string")
.linked("string")
.text("string")
.build())
.folderId("string")
.itemLoginId("string")
.name("string")
.notes("string")
.organizationId("string")
.password("string")
.reprompt(false)
.totp("string")
.uris(ItemLoginUriArgs.builder()
.value("string")
.match("string")
.build())
.username("string")
.build());
item_login_resource = bitwarden.ItemLogin("itemLoginResource",
collection_ids=["string"],
favorite=False,
fields=[{
"name": "string",
"boolean": False,
"hidden": "string",
"linked": "string",
"text": "string",
}],
folder_id="string",
item_login_id="string",
name="string",
notes="string",
organization_id="string",
password="string",
reprompt=False,
totp="string",
uris=[{
"value": "string",
"match": "string",
}],
username="string")
const itemLoginResource = new bitwarden.ItemLogin("itemLoginResource", {
collectionIds: ["string"],
favorite: false,
fields: [{
name: "string",
boolean: false,
hidden: "string",
linked: "string",
text: "string",
}],
folderId: "string",
itemLoginId: "string",
name: "string",
notes: "string",
organizationId: "string",
password: "string",
reprompt: false,
totp: "string",
uris: [{
value: "string",
match: "string",
}],
username: "string",
});
type: bitwarden:ItemLogin
properties:
collectionIds:
- string
favorite: false
fields:
- boolean: false
hidden: string
linked: string
name: string
text: string
folderId: string
itemLoginId: string
name: string
notes: string
organizationId: string
password: string
reprompt: false
totp: string
uris:
- match: string
value: string
username: string
ItemLogin 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 ItemLogin resource accepts the following input properties:
- Collection
Ids List<string> - Identifier of the collections the item belongs to.
- Favorite bool
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- Fields
List<Item
Login Field> - Extra fields.
- Folder
Id string - Identifier of the folder.
- Item
Login stringId - Identifier.
- Name string
- Name.
- Notes string
- Notes.
- Organization
Id string - Identifier of the organization.
- Password string
- Login password.
- Reprompt bool
- Require master password 're-prompt' when displaying secret in the UI.
- Totp string
- Verification code.
- Uris
List<Item
Login Uri> - URI.
- Username string
- Login username.
- Collection
Ids []string - Identifier of the collections the item belongs to.
- Favorite bool
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- Fields
[]Item
Login Field Args - Extra fields.
- Folder
Id string - Identifier of the folder.
- Item
Login stringId - Identifier.
- Name string
- Name.
- Notes string
- Notes.
- Organization
Id string - Identifier of the organization.
- Password string
- Login password.
- Reprompt bool
- Require master password 're-prompt' when displaying secret in the UI.
- Totp string
- Verification code.
- Uris
[]Item
Login Uri Args - URI.
- Username string
- Login username.
- collection
Ids List<String> - Identifier of the collections the item belongs to.
- favorite Boolean
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields
List<Item
Login Field> - Extra fields.
- folder
Id String - Identifier of the folder.
- item
Login StringId - Identifier.
- name String
- Name.
- notes String
- Notes.
- organization
Id String - Identifier of the organization.
- password String
- Login password.
- reprompt Boolean
- Require master password 're-prompt' when displaying secret in the UI.
- totp String
- Verification code.
- uris
List<Item
Login Uri> - URI.
- username String
- Login username.
- collection
Ids string[] - Identifier of the collections the item belongs to.
- favorite boolean
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields
Item
Login Field[] - Extra fields.
- folder
Id string - Identifier of the folder.
- item
Login stringId - Identifier.
- name string
- Name.
- notes string
- Notes.
- organization
Id string - Identifier of the organization.
- password string
- Login password.
- reprompt boolean
- Require master password 're-prompt' when displaying secret in the UI.
- totp string
- Verification code.
- uris
Item
Login Uri[] - URI.
- username string
- Login username.
- collection_
ids Sequence[str] - Identifier of the collections the item belongs to.
- favorite bool
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields
Sequence[Item
Login Field Args] - Extra fields.
- folder_
id str - Identifier of the folder.
- item_
login_ strid - Identifier.
- name str
- Name.
- notes str
- Notes.
- organization_
id str - Identifier of the organization.
- password str
- Login password.
- reprompt bool
- Require master password 're-prompt' when displaying secret in the UI.
- totp str
- Verification code.
- uris
Sequence[Item
Login Uri Args] - URI.
- username str
- Login username.
- collection
Ids List<String> - Identifier of the collections the item belongs to.
- favorite Boolean
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields List<Property Map>
- Extra fields.
- folder
Id String - Identifier of the folder.
- item
Login StringId - Identifier.
- name String
- Name.
- notes String
- Notes.
- organization
Id String - Identifier of the organization.
- password String
- Login password.
- reprompt Boolean
- Require master password 're-prompt' when displaying secret in the UI.
- totp String
- Verification code.
- uris List<Property Map>
- URI.
- username String
- Login username.
Outputs
All input properties are implicitly available as output properties. Additionally, the ItemLogin resource produces the following output properties:
- Attachments
List<Item
Login Attachment> - List of item attachments.
- Creation
Date string - Date the item was created.
- Deleted
Date string - Date the item was deleted.
- Id string
- The provider-assigned unique ID for this managed resource.
- Revision
Date string - Last time the item was updated.
- Attachments
[]Item
Login Attachment - List of item attachments.
- Creation
Date string - Date the item was created.
- Deleted
Date string - Date the item was deleted.
- Id string
- The provider-assigned unique ID for this managed resource.
- Revision
Date string - Last time the item was updated.
- attachments
List<Item
Login Attachment> - List of item attachments.
- creation
Date String - Date the item was created.
- deleted
Date String - Date the item was deleted.
- id String
- The provider-assigned unique ID for this managed resource.
- revision
Date String - Last time the item was updated.
- attachments
Item
Login Attachment[] - List of item attachments.
- creation
Date string - Date the item was created.
- deleted
Date string - Date the item was deleted.
- id string
- The provider-assigned unique ID for this managed resource.
- revision
Date string - Last time the item was updated.
- attachments
Sequence[Item
Login Attachment] - List of item attachments.
- creation_
date str - Date the item was created.
- deleted_
date str - Date the item was deleted.
- id str
- The provider-assigned unique ID for this managed resource.
- revision_
date str - Last time the item was updated.
- attachments List<Property Map>
- List of item attachments.
- creation
Date String - Date the item was created.
- deleted
Date String - Date the item was deleted.
- id String
- The provider-assigned unique ID for this managed resource.
- revision
Date String - Last time the item was updated.
Look up Existing ItemLogin Resource
Get an existing ItemLogin 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?: ItemLoginState, opts?: CustomResourceOptions): ItemLogin
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attachments: Optional[Sequence[ItemLoginAttachmentArgs]] = None,
collection_ids: Optional[Sequence[str]] = None,
creation_date: Optional[str] = None,
deleted_date: Optional[str] = None,
favorite: Optional[bool] = None,
fields: Optional[Sequence[ItemLoginFieldArgs]] = None,
folder_id: Optional[str] = None,
item_login_id: Optional[str] = None,
name: Optional[str] = None,
notes: Optional[str] = None,
organization_id: Optional[str] = None,
password: Optional[str] = None,
reprompt: Optional[bool] = None,
revision_date: Optional[str] = None,
totp: Optional[str] = None,
uris: Optional[Sequence[ItemLoginUriArgs]] = None,
username: Optional[str] = None) -> ItemLogin
func GetItemLogin(ctx *Context, name string, id IDInput, state *ItemLoginState, opts ...ResourceOption) (*ItemLogin, error)
public static ItemLogin Get(string name, Input<string> id, ItemLoginState? state, CustomResourceOptions? opts = null)
public static ItemLogin get(String name, Output<String> id, ItemLoginState state, CustomResourceOptions options)
resources: _: type: bitwarden:ItemLogin 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.
- Attachments
List<Item
Login Attachment> - List of item attachments.
- Collection
Ids List<string> - Identifier of the collections the item belongs to.
- Creation
Date string - Date the item was created.
- Deleted
Date string - Date the item was deleted.
- Favorite bool
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- Fields
List<Item
Login Field> - Extra fields.
- Folder
Id string - Identifier of the folder.
- Item
Login stringId - Identifier.
- Name string
- Name.
- Notes string
- Notes.
- Organization
Id string - Identifier of the organization.
- Password string
- Login password.
- Reprompt bool
- Require master password 're-prompt' when displaying secret in the UI.
- Revision
Date string - Last time the item was updated.
- Totp string
- Verification code.
- Uris
List<Item
Login Uri> - URI.
- Username string
- Login username.
- Attachments
[]Item
Login Attachment Args - List of item attachments.
- Collection
Ids []string - Identifier of the collections the item belongs to.
- Creation
Date string - Date the item was created.
- Deleted
Date string - Date the item was deleted.
- Favorite bool
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- Fields
[]Item
Login Field Args - Extra fields.
- Folder
Id string - Identifier of the folder.
- Item
Login stringId - Identifier.
- Name string
- Name.
- Notes string
- Notes.
- Organization
Id string - Identifier of the organization.
- Password string
- Login password.
- Reprompt bool
- Require master password 're-prompt' when displaying secret in the UI.
- Revision
Date string - Last time the item was updated.
- Totp string
- Verification code.
- Uris
[]Item
Login Uri Args - URI.
- Username string
- Login username.
- attachments
List<Item
Login Attachment> - List of item attachments.
- collection
Ids List<String> - Identifier of the collections the item belongs to.
- creation
Date String - Date the item was created.
- deleted
Date String - Date the item was deleted.
- favorite Boolean
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields
List<Item
Login Field> - Extra fields.
- folder
Id String - Identifier of the folder.
- item
Login StringId - Identifier.
- name String
- Name.
- notes String
- Notes.
- organization
Id String - Identifier of the organization.
- password String
- Login password.
- reprompt Boolean
- Require master password 're-prompt' when displaying secret in the UI.
- revision
Date String - Last time the item was updated.
- totp String
- Verification code.
- uris
List<Item
Login Uri> - URI.
- username String
- Login username.
- attachments
Item
Login Attachment[] - List of item attachments.
- collection
Ids string[] - Identifier of the collections the item belongs to.
- creation
Date string - Date the item was created.
- deleted
Date string - Date the item was deleted.
- favorite boolean
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields
Item
Login Field[] - Extra fields.
- folder
Id string - Identifier of the folder.
- item
Login stringId - Identifier.
- name string
- Name.
- notes string
- Notes.
- organization
Id string - Identifier of the organization.
- password string
- Login password.
- reprompt boolean
- Require master password 're-prompt' when displaying secret in the UI.
- revision
Date string - Last time the item was updated.
- totp string
- Verification code.
- uris
Item
Login Uri[] - URI.
- username string
- Login username.
- attachments
Sequence[Item
Login Attachment Args] - List of item attachments.
- collection_
ids Sequence[str] - Identifier of the collections the item belongs to.
- creation_
date str - Date the item was created.
- deleted_
date str - Date the item was deleted.
- favorite bool
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields
Sequence[Item
Login Field Args] - Extra fields.
- folder_
id str - Identifier of the folder.
- item_
login_ strid - Identifier.
- name str
- Name.
- notes str
- Notes.
- organization_
id str - Identifier of the organization.
- password str
- Login password.
- reprompt bool
- Require master password 're-prompt' when displaying secret in the UI.
- revision_
date str - Last time the item was updated.
- totp str
- Verification code.
- uris
Sequence[Item
Login Uri Args] - URI.
- username str
- Login username.
- attachments List<Property Map>
- List of item attachments.
- collection
Ids List<String> - Identifier of the collections the item belongs to.
- creation
Date String - Date the item was created.
- deleted
Date String - Date the item was deleted.
- favorite Boolean
- Mark as a Favorite to have item appear at the top of your Vault in the UI.
- fields List<Property Map>
- Extra fields.
- folder
Id String - Identifier of the folder.
- item
Login StringId - Identifier.
- name String
- Name.
- notes String
- Notes.
- organization
Id String - Identifier of the organization.
- password String
- Login password.
- reprompt Boolean
- Require master password 're-prompt' when displaying secret in the UI.
- revision
Date String - Last time the item was updated.
- totp String
- Verification code.
- uris List<Property Map>
- URI.
- username String
- Login username.
Supporting Types
ItemLoginAttachment, ItemLoginAttachmentArgs
ItemLoginField, ItemLoginFieldArgs
ItemLoginUri, ItemLoginUriArgs
Import
$ pulumi import bitwarden:index/itemLogin:ItemLogin example <login_item_id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- bitwarden maxlaverse/terraform-provider-bitwarden
- License
- Notes
- This Pulumi package is based on the
bitwarden
Terraform Provider.