Skip to content

Commit d84e590

Browse files
chore: add changelog for release 0.2.0 (#85)
### what add changelog entries for new release ### why prepare the release ### testing n/a ### docs n/a
1 parent c1f8f69 commit d84e590

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.2.0 - 2025-07-02
2+
3+
- Add `stacklet_platform` data source.
4+
- Handle pagination in policy collection API.
5+
6+
17
## 0.1.0 - 2025-06-17
28

39
- First release

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ data "stacklet_policy" "one" {
6868
}
6969
7070
resource "stacklet_policy_collection" "example" {
71-
name = "tf-cursor-example-collection"
71+
name = "example-collection"
7272
cloud_provider = "AWS"
7373
description = "Example policy collection"
7474
auto_update = true
7575
}
7676
7777
resource "stacklet_account_group" "example" {
78-
name = "tf-cusror-example-account-group"
78+
name = "example-account-group"
7979
cloud_provider = "AWS"
80-
description = "test account group from terraform"
80+
description = "Example account group"
8181
regions = ["us-east-1", "us-east-2"]
8282
}
8383
@@ -100,15 +100,15 @@ resource "stacklet_policy_collection_mapping" "one" {
100100
resource "stacklet_account" "two" {
101101
cloud_provider = "AWS"
102102
key = "000000000000" # AWS account ID
103-
name = "test-tf-acccount"
103+
name = "test-acccount"
104104
short_name = "tftest"
105-
description = "Test account from terraform testing update"
105+
description = "Test account"
106106
107107
}
108108
109109
resource "stacklet_binding" "binding" {
110-
name = "test-tf-cursor-binding"
111-
description = "created with terraform update"
110+
name = "test-binding"
111+
description = "Created with terraform"
112112
account_group_uuid = stacklet_account_group.example.uuid
113113
policy_collection_uuid = stacklet_policy_collection.example.uuid
114114
}

0 commit comments

Comments
 (0)