Skip to content

Commit bfbaf49

Browse files
authored
chore(cicd): prepare for v0.3.0 (#64)
1 parent d9d70ed commit bfbaf49

File tree

5 files changed

+37
-7
lines changed

5 files changed

+37
-7
lines changed

.chglog/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ options:
1111
- fix
1212
- perf
1313
- docs
14+
- test
1415
commit_groups:
1516
title_maps:
1617
feat: ":sparkles: Features"
1718
fix: ":bug: Bug Fixes"
1819
perf: ":zap: Performance Improvements"
1920
docs: ":books: Documentation (unchanged functionality)"
21+
test: ":mag: Tests (unchanged functionality)"
2022
header:
2123
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s\\:\\|\\-]*)\\))?\\:\\s(.*)$"
2224
pattern_maps:

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11

22

3+
<a name="v0.3.0"></a>
4+
## v0.3.0
5+
6+
> 2023-11-01
7+
8+
- Full diff - **[v0.2.1...v0.3.0](https://github.com/kiwicom/terraform-provider-montecarlo/compare/v0.2.1...v0.3.0)**
9+
10+
### :sparkles: Features
11+
12+
* **iam:** IAM member resource implemented ([#53](https://github.com/kiwicom/terraform-provider-montecarlo/issues/53))
13+
* **iam:** authorization groups resource implementation ([#50](https://github.com/kiwicom/terraform-provider-montecarlo/issues/50))
14+
15+
### :bug: Bug Fixes
16+
17+
* **iam:** iam_member using groups API for assignment ([#61](https://github.com/kiwicom/terraform-provider-montecarlo/pull/61))
18+
19+
### :books: Documentation (unchanged functionality)
20+
21+
* **gen:** removed attributes for docs generation ([#51](https://github.com/kiwicom/terraform-provider-montecarlo/issues/51))
22+
* **resources:** iam_member documentation and examples ([#63](https://github.com/kiwicom/terraform-provider-montecarlo/issues/63))
23+
* **resources:** iam_group documentation and examples ([#60](https://github.com/kiwicom/terraform-provider-montecarlo/issues/60))
24+
25+
### :mag: Tests (unchanged functionality)
26+
27+
* **iam:** member assignment acceptance tests ([#55](https://github.com/kiwicom/terraform-provider-montecarlo/issues/55))
28+
* **iam:** IAM group resource acceptance tests ([#54](https://github.com/kiwicom/terraform-provider-montecarlo/issues/54))
29+
30+
331
<a name="v0.2.1"></a>
432
## v0.2.1
533

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
![GitHub release](https://img.shields.io/github/v/release/kiwicom/terraform-provider-montecarlo)
88
[![Go Report Card](https://goreportcard.com/badge/github.com/kiwicom/terraform-provider-montecarlo)](https://goreportcard.com/report/github.com/kiwicom/terraform-provider-montecarlo)
99
![coverage](https://raw.githubusercontent.com/kiwicom/terraform-provider-montecarlo/badges/.badges/master/coverage.svg)
10-
![milestone](https://img.shields.io/github/milestones/progress/kiwicom/terraform-provider-montecarlo/1)
10+
![milestone](https://img.shields.io/github/milestones/progress/kiwicom/terraform-provider-montecarlo/2)
1111

1212
[![Terraform](https://img.shields.io/badge/terraform-%235835CC.svg?style=for-the-badge&logo=terraform&logoColor=white)](https://registry.terraform.io/providers/kiwicom/montecarlo/latest)
1313

@@ -39,8 +39,8 @@ Provider initialization with <ins>**Account Service Key**</ins>, which is used t
3939
```hcl
4040
provider "monte_carlo" {
4141
account_service_key = {
42-
id = "montecarlo"
43-
token = "montecarlo"
42+
id = var.montecarlo_api_key_id #(secret)
43+
token = var.montecarlo_api_key_token #(secret)
4444
}
4545
}
4646
```

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ terraform {
2929
3030
provider "montecarlo" {
3131
account_service_key = {
32-
id = var.api_key_id #(secret)
33-
token = var.api_key_token #(secret)
32+
id = var.montecarlo_api_key_id #(secret)
33+
token = var.montecarlo_api_key_token #(secret)
3434
}
3535
}
3636
```

examples/provider/provider.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ terraform {
99

1010
provider "montecarlo" {
1111
account_service_key = {
12-
id = "montecarlo" #(secret)
13-
token = "montecarlo" #(secret)
12+
id = var.montecarlo_api_key_id # (secret)
13+
token = var.montecarlo_api_key_token # (secret)
1414
}
1515
}

0 commit comments

Comments
 (0)