Skip to content
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

add transit encryption mode support for redis instance resource #4444

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions mmv1/products/redis/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,3 +190,13 @@ objects:
- :STANDARD_HA
default_value: :BASIC
input: true
- !ruby/object:Api::Type::Enum
name: transitEncryptionMode
description: |
The TLS mode of the Redis instance, If not provided, TLS is disabled for the instance.

- SERVER_AUTHENTICATION: Client to Server traffic encryption enabled with server authentcation
values:
- :SERVER_AUTHENTICATION
rileykarson marked this conversation as resolved.
Show resolved Hide resolved
- :DISABLED
default_value: :DISABLED
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ resource "google_redis_instance" "test" {
maxmemory-policy = "noeviction"
notify-keyspace-events = ""
}
transit_encryption_mode = "SERVER_AUTHENTICATION"
}
`, name)
}
Expand Down