Skip to content

Commit

Permalink
chore(cicd): prepare for v0.3.0 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndopj authored Nov 1, 2023
1 parent d9d70ed commit bfbaf49
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .chglog/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ options:
- fix
- perf
- docs
- test
commit_groups:
title_maps:
feat: ":sparkles: Features"
fix: ":bug: Bug Fixes"
perf: ":zap: Performance Improvements"
docs: ":books: Documentation (unchanged functionality)"
test: ":mag: Tests (unchanged functionality)"
header:
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s\\:\\|\\-]*)\\))?\\:\\s(.*)$"
pattern_maps:
Expand Down
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@


<a name="v0.3.0"></a>
## v0.3.0

> 2023-11-01
- Full diff - **[v0.2.1...v0.3.0](https://github.com/kiwicom/terraform-provider-montecarlo/compare/v0.2.1...v0.3.0)**

### :sparkles: Features

* **iam:** IAM member resource implemented ([#53](https://github.com/kiwicom/terraform-provider-montecarlo/issues/53))
* **iam:** authorization groups resource implementation ([#50](https://github.com/kiwicom/terraform-provider-montecarlo/issues/50))

### :bug: Bug Fixes

* **iam:** iam_member using groups API for assignment ([#61](https://github.com/kiwicom/terraform-provider-montecarlo/pull/61))

### :books: Documentation (unchanged functionality)

* **gen:** removed attributes for docs generation ([#51](https://github.com/kiwicom/terraform-provider-montecarlo/issues/51))
* **resources:** iam_member documentation and examples ([#63](https://github.com/kiwicom/terraform-provider-montecarlo/issues/63))
* **resources:** iam_group documentation and examples ([#60](https://github.com/kiwicom/terraform-provider-montecarlo/issues/60))

### :mag: Tests (unchanged functionality)

* **iam:** member assignment acceptance tests ([#55](https://github.com/kiwicom/terraform-provider-montecarlo/issues/55))
* **iam:** IAM group resource acceptance tests ([#54](https://github.com/kiwicom/terraform-provider-montecarlo/issues/54))


<a name="v0.2.1"></a>
## v0.2.1

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
![GitHub release](https://img.shields.io/github/v/release/kiwicom/terraform-provider-montecarlo)
[![Go Report Card](https://goreportcard.com/badge/github.com/kiwicom/terraform-provider-montecarlo)](https://goreportcard.com/report/github.com/kiwicom/terraform-provider-montecarlo)
![coverage](https://raw.githubusercontent.com/kiwicom/terraform-provider-montecarlo/badges/.badges/master/coverage.svg)
![milestone](https://img.shields.io/github/milestones/progress/kiwicom/terraform-provider-montecarlo/1)
![milestone](https://img.shields.io/github/milestones/progress/kiwicom/terraform-provider-montecarlo/2)

[![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)

Expand Down Expand Up @@ -39,8 +39,8 @@ Provider initialization with <ins>**Account Service Key**</ins>, which is used t
```hcl
provider "monte_carlo" {
account_service_key = {
id = "montecarlo"
token = "montecarlo"
id = var.montecarlo_api_key_id #(secret)
token = var.montecarlo_api_key_token #(secret)
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ terraform {
provider "montecarlo" {
account_service_key = {
id = var.api_key_id #(secret)
token = var.api_key_token #(secret)
id = var.montecarlo_api_key_id #(secret)
token = var.montecarlo_api_key_token #(secret)
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {

provider "montecarlo" {
account_service_key = {
id = "montecarlo" #(secret)
token = "montecarlo" #(secret)
id = var.montecarlo_api_key_id # (secret)
token = var.montecarlo_api_key_token # (secret)
}
}

0 comments on commit bfbaf49

Please sign in to comment.