Skip to content

Commit

Permalink
Merge pull request #6 from mineiros-io/mariux/schema
Browse files Browse the repository at this point in the history
chore: prepare initial release
  • Loading branch information
mariux authored Mar 14, 2022
2 parents fcc2587 + 107bdc6 commit b6b28c8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Add support for `null_resource` Terraform resource
- Add support for [`google_pubsub_topic` Terraform resource](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/pubsub_topic)
- Add support for [`google_pubsub_schema` Terraform resource](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/pubsub_schema)
- Add support for [`mineiros-io/terraform-google-pubsub-topic-iam` Terraform Module](https://github.com/mineiros-io/terraform-google-pubsub-topic-iam)
- Add support for [`mineiros-io/terraform-google-pubsub-subscription` Terraform Module](https://github.com/mineiros-io/terraform-google-pubsub-subscription)

[unreleased]: https://github.com/mineiros-io/terraform-google-pubsub-topic/compare/v0.0.1...HEAD
<!-- [0.0.2]: https://github.com/mineiros-io/terraform-google-pubsub-topic/compare/v0.0.1...v0.0.2 -->
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ See [variables.tf] and [examples/] for details and use-cases.

- [**`iam`**](#var-iam): *(Optional `list(iam)`)*<a name="var-iam"></a>

List of IAM access roles to grant identities on the topic.
List of IAM access roles to grant to a set of identities on the topic.

Default is `[]`.

Expand Down Expand Up @@ -443,7 +443,9 @@ See [variables.tf] and [examples/] for details and use-cases.
- [**`iam`**](#attr-subscriptions-iam): *(Optional `list(iam)`)*<a name="attr-subscriptions-iam"></a>
List of IAM access roles to grant identities on the subscription.
List of IAM access roles to grant to a set of identities on the subscription.
Default is `[]`.
Each `iam` object in the list accepts the following attributes:
Expand Down
5 changes: 3 additions & 2 deletions README.tfdoc.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ section {
type = list(iam)
default = []
description = <<-END
List of IAM access roles to grant identities on the topic.
List of IAM access roles to grant to a set of identities on the topic.
END

attribute "role" {
Expand Down Expand Up @@ -541,8 +541,9 @@ section {

attribute "iam" {
type = list(iam)
default = []
description = <<-END
List of IAM access roles to grant identities on the subscription.
List of IAM access roles to grant to a set of identities on the subscription.
END

attribute "role" {
Expand Down

0 comments on commit b6b28c8

Please sign in to comment.