-
Notifications
You must be signed in to change notification settings - Fork 9
Release test for AWS IAM Redis passwordless #189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1c05e19
3ffea3a
3bcad9f
61183c0
0040135
4bbb56e
6b5c497
8cd7f92
73e4c53
b8e6901
945c81a
bfe735f
e3d8379
0bc3c8e
42c91b4
51aad5a
5ba5078
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -369,6 +369,30 @@ variable "redis_passwordless_azure_client_id" { | |
| description = "Azure Managed Service Identity (MSI) Client ID to be used for redis authentication. If not set, System Assigned Managed Identity will be used." | ||
| } | ||
|
|
||
| variable "redis_passwordless_aws_use_instance_profile" { | ||
| type = bool | ||
| description = "Boolean to use AWS instance profile for Redis IAM authentication." | ||
| default = false | ||
| } | ||
|
|
||
| variable "redis_passwordless_aws_region" { | ||
| type = string | ||
| description = "AWS Region of the AWS ElastiCache resource for Redis passwordless authentication." | ||
| default = null | ||
| } | ||
|
|
||
| variable "redis_passwordless_aws_host_name" { | ||
| type = string | ||
| description = "The name of the Redis instance on AWS for passwordless authentication." | ||
| default = null | ||
| } | ||
|
|
||
| variable "redis_passwordless_aws_iam_user" { | ||
| type = string | ||
| description = "The IAM username for Redis IAM authentication." | ||
| default = null | ||
| } | ||
|
Comment on lines
+378
to
+394
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ❓ Would it make sense to group these instead? That might be a better user experience, and communicate that they should be set together.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This would break existing module usage where these variables are already consumed. |
||
|
|
||
| variable "run_pipeline_image" { | ||
| type = string | ||
| description = "Container image used to execute Terraform runs. Leave blank to use the default image that comes with Terraform Enterprise. Defaults to \"\" if no value is given." | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see the variable
redis_passwordless_aws_iam_usercoming from the terraform-fdo repo