Skip to content

Commit

Permalink
added sensitive flag to auth_string field (#4505)
Browse files Browse the repository at this point in the history
* added sensitive flag to auth_string field

* merge conflict fixed

* test updated with beta only field
  • Loading branch information
venkykuberan authored Feb 19, 2021
1 parent d63a4a8 commit d4b6610
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
Type: schema.TypeString,
Description: "AUTH String set on the instance. This field will only be populated if auth_enabled is true.",
Computed: true,
Sensitive: true,
},
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<% autogen_exception -%>

package google

import (
Expand Down Expand Up @@ -143,7 +145,9 @@ resource "google_redis_instance" "test" {
maxmemory-policy = "noeviction"
notify-keyspace-events = ""
}
<% unless version == 'ga' -%>
transit_encryption_mode = "SERVER_AUTHENTICATION"
<% end -%>
}
`, name)
}
Expand Down

0 comments on commit d4b6610

Please sign in to comment.