Skip to content

Commit 4356437

Browse files
authored
feat: added support for access tags (#320)
1 parent e3097ca commit 4356437

File tree

11 files changed

+43
-0
lines changed

11 files changed

+43
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,14 @@ You need the following permissions to run this module.
124124
| [ibm_iam_authorization_policy.kms_policy](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/iam_authorization_policy) | resource |
125125
| [ibm_resource_instance.es_instance](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/resource_instance) | resource |
126126
| [ibm_resource_key.service_credentials](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/resource_key) | resource |
127+
| [ibm_resource_tag.es_access_tag](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/resource_tag) | resource |
127128
| [time_sleep.wait_for_authorization_policy](https://registry.terraform.io/providers/hashicorp/time/latest/docs/resources/sleep) | resource |
128129

129130
### Inputs
130131

131132
| Name | Description | Type | Default | Required |
132133
|------|-------------|------|---------|:--------:|
134+
| <a name="input_access_tags"></a> [access\_tags](#input\_access\_tags) | The list of access tags associated with the Event Streams instance. | `list(string)` | `[]` | no |
133135
| <a name="input_cbr_rules"></a> [cbr\_rules](#input\_cbr\_rules) | The list of context-based restriction rules to create. | <pre>list(object({<br/> description = string<br/> account_id = string<br/> rule_contexts = list(object({<br/> attributes = optional(list(object({<br/> name = string<br/> value = string<br/> }))) }))<br/> enforcement_mode = string<br/> }))</pre> | `[]` | no |
134136
| <a name="input_create_timeout"></a> [create\_timeout](#input\_create\_timeout) | The timeout value for creating an Event Streams instance. Specify `3h` for an Enterprise plan instance. Add 1 h for each level of non-default throughput. Add 30 min for each level of non-default storage size. | `string` | `"3h"` | no |
135137
| <a name="input_delete_timeout"></a> [delete\_timeout](#input\_delete\_timeout) | The timeout value for deleting an Event Streams instance. | `string` | `"15m"` | no |

examples/complete/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ module "event_streams" {
2020
es_name = "${var.prefix}-es"
2121
schemas = var.schemas
2222
tags = var.resource_tags
23+
access_tags = var.access_tags
2324
topics = var.topics
2425
service_credential_names = {
2526
"es_writer" : "Writer",

examples/complete/variables.tf

+6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ variable "resource_tags" {
2828
default = []
2929
}
3030

31+
variable "access_tags" {
32+
type = list(string)
33+
description = "The list of access tags associated with the Event Steams instance."
34+
default = []
35+
}
36+
3137
variable "schemas" {
3238
type = list(object(
3339
{

ibm_catalog.json

+3
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@
110110
{
111111
"key": "resource_tags"
112112
},
113+
{
114+
"key": "access_tags"
115+
},
113116
{
114117
"key": "plan",
115118
"options": [

main.tf

+10
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,16 @@ resource "ibm_event_streams_topic" "es_topic" {
7878
config = var.topics[count.index].config
7979
}
8080

81+
##############################################################################
82+
# ACCESS TAGS - attaching existing access tags to the resource instance
83+
##############################################################################
84+
resource "ibm_resource_tag" "es_access_tag" {
85+
count = length(var.access_tags) > 0 ? 1 : 0
86+
resource_id = ibm_resource_instance.es_instance.id
87+
tags = var.access_tags
88+
tag_type = "access"
89+
}
90+
8191
##############################################################################
8292
# IAM Authorization Policy
8393
##############################################################################

modules/fscloud/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ No resources.
2626

2727
| Name | Description | Type | Default | Required |
2828
|------|-------------|------|---------|:--------:|
29+
| <a name="input_access_tags"></a> [access\_tags](#input\_access\_tags) | The list of access tags associated with the Event Steams instance. | `list(string)` | `[]` | no |
2930
| <a name="input_cbr_rules"></a> [cbr\_rules](#input\_cbr\_rules) | The list of context-based restriction rules to create. | <pre>list(object({<br/> description = string<br/> account_id = string<br/> rule_contexts = list(object({<br/> attributes = optional(list(object({<br/> name = string<br/> value = string<br/> }))) }))<br/> enforcement_mode = string<br/> }))</pre> | `[]` | no |
3031
| <a name="input_es_name"></a> [es\_name](#input\_es\_name) | The name of the Event Streams instance. | `string` | n/a | yes |
3132
| <a name="input_existing_kms_instance_guid"></a> [existing\_kms\_instance\_guid](#input\_existing\_kms\_instance\_guid) | The GUID of the Hyper Protect Crypto service in which the key specified in var.kms\_key\_crn is coming from | `string` | n/a | yes |

modules/fscloud/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ module "event_streams" {
88
existing_kms_instance_guid = var.existing_kms_instance_guid
99
schemas = var.schemas
1010
tags = var.tags
11+
access_tags = var.access_tags
1112
topics = var.topics
1213
service_endpoints = "private"
1314
cbr_rules = var.cbr_rules

modules/fscloud/variables.tf

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ variable "tags" {
1111
default = []
1212
}
1313

14+
variable "access_tags" {
15+
type = list(string)
16+
description = "The list of access tags associated with the Event Steams instance."
17+
default = []
18+
}
19+
1420
variable "es_name" {
1521
description = "The name of the Event Streams instance."
1622
type = string

solutions/quickstart/main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ module "event_streams" {
1919
region = var.region
2020
topics = var.topics
2121
tags = var.resource_tags
22+
access_tags = var.access_tags
2223
service_credential_names = var.service_credential_names
2324
}

solutions/quickstart/variables.tf

+6
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ variable "resource_tags" {
4040
default = []
4141
}
4242

43+
variable "access_tags" {
44+
type = list(string)
45+
description = "The list of access tags associated with the Event Streams instance."
46+
default = []
47+
}
48+
4349
variable "plan" {
4450
type = string
4551
description = "The plan for the Event Streams instance. Possible values: `lite` and `standard`."

variables.tf

+6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ variable "tags" {
2828
default = []
2929
}
3030

31+
variable "access_tags" {
32+
type = list(string)
33+
description = "The list of access tags associated with the Event Streams instance."
34+
default = []
35+
}
36+
3137
variable "region" {
3238
type = string
3339
description = "The region where the Event Streams are created."

0 commit comments

Comments
 (0)