Skip to content

Commit

Permalink
chore: v0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Jun 19, 2024
1 parent c52c413 commit bce26c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BIN_OUT_DIR := out
BINARY := $(BIN_OUT_DIR)/terraform-provider-cala

version = 0.0.14
version = 0.0.15
os_arch = $(shell go env GOOS)_$(shell go env GOARCH)
provider_path = registry.terraform.io/galoymoney/cala/$(version)/$(os_arch)/

Expand Down
4 changes: 2 additions & 2 deletions docs/resources/balance_sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "cala_journal" "journal" {
}
resource "cala_balance_sheet" "balance_sheet" {
id = cala_journal.journal.id
journal_id = cala_journal.journal.id
}
```

Expand All @@ -30,7 +30,7 @@ resource "cala_balance_sheet" "balance_sheet" {

### Required

- `id` (String) ID of the journal associated with the balance sheet.
- `journal_id` (String) ID of the journal associated with the balance sheet.

### Read-Only

Expand Down
2 changes: 1 addition & 1 deletion examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ terraform {
required_providers {
cala = {
source = "registry.terraform.io/galoymoney/cala"
version = "0.0.14"
version = "0.0.15"
}
}
}

0 comments on commit bce26c6

Please sign in to comment.