Skip to content

Commit

Permalink
chore: v0.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Jun 15, 2024
1 parent 1712ea3 commit cdf0320
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/resources/account.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ resource "cala_account" "alice" {
- `id` (String) ID of the account.
- `name` (String) Name of the account.

### Optional

- `description` (String) Description of the account.
- `external_id` (String) externalId

### Read-Only

- `normal_balance_type` (String) normalBalanceType
Expand Down
47 changes: 47 additions & 0 deletions docs/resources/account_set.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "cala_account_set Resource - terraform-provider-cala"
subcategory: ""
description: |-
Cala account.
---

# cala_account_set (Resource)

Cala account.

## Example Usage

```terraform
resource "random_uuid" "journal_id" { }
resource "cala_journal" "journal" {
id = random_uuid.journal_id.result
name = "Default"
}
resource "random_uuid" "account_set_id" { }
resource "cala_account_set" "set" {
id = random_uuid.account_set_id.result
name = "Assets"
journal_id = cala_journal.journal.id
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `id` (String) ID of the account.
- `journal_id` (String) ID of the journal.
- `name` (String) Name of the account.

### Optional

- `description` (String) Description of the account.

### Read-Only

- `normal_balance_type` (String) normalBalanceType
38 changes: 38 additions & 0 deletions docs/resources/journal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "cala_journal Resource - terraform-provider-cala"
subcategory: ""
description: |-
Cala journal.
---

# cala_journal (Resource)

Cala journal.

## Example Usage

```terraform
resource "random_uuid" "journal_id" { }
resource "cala_journal" "journal" {
id = random_uuid.journal_id.result
name = "Default"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `id` (String) ID of the journal.
- `name` (String) Name of the journal.

### Optional

- `description` (String) Description of the journal.

### Read-Only

- `status` (String) status

0 comments on commit cdf0320

Please sign in to comment.