-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1712ea3
commit cdf0320
Showing
3 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |