File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ resource "aws_opensearch_domain" "default" {
18
18
advanced_security_options {
19
19
enabled = var. advanced_security_options_enabled
20
20
internal_user_database_enabled = var. advanced_security_options_internal_user_database_enabled
21
+ anonymous_auth_enabled = var. advanced_security_options_anonymous_auth_enabled
21
22
master_user_options {
22
23
master_user_arn = var. advanced_security_options_master_user_arn
23
24
master_user_name = var. advanced_security_options_master_user_name
Original file line number Diff line number Diff line change @@ -463,3 +463,9 @@ variable "auto_tune" {
463
463
error_message = " Variable auto_tune.rollback_on_disable valid values: DEFAULT_ROLLBACK or NO_ROLLBACK."
464
464
}
465
465
}
466
+
467
+ variable "advanced_security_options_anonymous_auth_enabled" {
468
+ type = bool
469
+ default = false
470
+ description = " Whether Anonymous auth is enabled. Enables fine-grained access control on an existing domain"
471
+ }
You can’t perform that action at this time.
0 commit comments