You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Name | Description | Type | Default | Required |
119
+
|------|-------------|:----:|:-----:|:-----:|
120
+
| account_id | The account id of the parameter store you want to allow access to. If none supplied, it uses the current account id of the provider. | string | `` | no |
121
+
| kms_key | The arn of the KMS key that you want to allow access to. If empty it uses a wildcard resource (`*`). | string | `` | no |
122
+
| parameter_root_name | The prefix or root parameter that you want to allow access to. | string | `` | no |
123
+
| region | The region of the parameter store value that you want to allow access to. If none supplied, it uses the current region of the provider. | string | `` | no |
124
+
125
+
## Outputs
126
+
127
+
| Name | Description |
128
+
|------|-------------|
129
+
| manage_kms_store_policy | A JSON policy document that allows decryption access to a KMS key. |
130
+
| manage_parameter_store_policy | A JSON policy document that allows full access to the parameter store. |
131
+
| put_xray_trace_policy | A JSON policy document that allows putting data into x-ray for tracing parameter store requests. |
132
+
| read_parameter_store_policy | A JSON policy document that only allows read access to the parameter store. |
133
+
| write_parameter_store_policy | A JSON policy document that only allows write access to the parameter store. |
134
+
135
+
## Makefile Targets
136
+
```
137
+
Available targets:
138
+
139
+
help This help screen
140
+
help/all Display help for all targets
141
+
lint Lint terraform code
142
+
143
+
```
144
+
145
+
116
146
117
147
## Related Projects
118
148
119
149
Check out these related projects.
120
150
121
-
-[terraform-aws-ssm-parameter-store](https://github.com/cloudposse/terraform-aws-ssm-parameter-store) - AWS SSM Parameter Store module
151
+
-[terraform-aws-ssm-parameter-store](https://github.com/cloudposse/terraform-aws-ssm-parameter-store) - Terraform module to populate AWS Systems Manager (SSM) Parameter Store with values from Terraform. Works great with Chamber.
152
+
-[terraform-aws-ssm-iam-role](https://github.com/cloudposse/terraform-aws-ssm-iam-role) - Terraform module to provision an IAM role with configurable permissions to access SSM Parameter Store
153
+
-[terraform-aws-kms-key](https://github.com/cloudposse/terraform-aws-kms-key) - Terraform module to provision a KMS key with alias
122
154
123
155
124
156
## Help
@@ -223,13 +255,13 @@ Check out [our other projects][github], [apply for a job][jobs], or [hire us][hi
Copy file name to clipboardExpand all lines: docs/terraform.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@
4
4
| Name | Description | Type | Default | Required |
5
5
|------|-------------|:----:|:-----:|:-----:|
6
6
| account_id | The account id of the parameter store you want to allow access to. If none supplied, it uses the current account id of the provider. | string | `` | no |
7
-
| kms_key | The arn of the KMS key that you want to allow access to. If empty it uses a wildcard resource. `*`| string | `` | no |
8
-
| parameter_root_name | The prefix or root parameter that you want to allow access to | string | `` | no |
7
+
| kms_key | The arn of the KMS key that you want to allow access to. If empty it uses a wildcard resource (`*`).| string | `` | no |
8
+
| parameter_root_name | The prefix or root parameter that you want to allow access to.| string | `` | no |
9
9
| region | The region of the parameter store value that you want to allow access to. If none supplied, it uses the current region of the provider. | string | `` | no |
10
10
11
11
## Outputs
12
12
13
13
| Name | Description |
14
14
|------|-------------|
15
-
| manage_kms_store_policy | A JSON policy document that allows decryption access to a KMS key |
16
-
| manage_parameter_store_policy | A JSON policy document that allows full access to the parameter store |
17
-
| put_xray_trace_policy | A JSON policy document that allows putting data into x-ray for tracing parameter store requests |
18
-
| read_parameter_store_policy | A JSON policy document that only allows read access to the parameter store |
19
-
| write_parameter_store_policy | A JSON policy document that only allows write access to the parameter store |
15
+
| manage_kms_store_policy | A JSON policy document that allows decryption access to a KMS key.|
16
+
| manage_parameter_store_policy | A JSON policy document that allows full access to the parameter store.|
17
+
| put_xray_trace_policy | A JSON policy document that allows putting data into x-ray for tracing parameter store requests.|
18
+
| read_parameter_store_policy | A JSON policy document that only allows read access to the parameter store.|
19
+
| write_parameter_store_policy | A JSON policy document that only allows write access to the parameter store.|
0 commit comments