|
| 1 | +################################################################################ |
| 2 | +# OpenSearch Collection |
| 3 | +################################################################################ |
| 4 | + |
| 5 | +output "opensearch_collection_public_arn" { |
| 6 | + description = "Amazon Resource Name (ARN) of the collection" |
| 7 | + value = module.opensearch_collection_public.arn |
| 8 | +} |
| 9 | + |
| 10 | +output "opensearch_collection_public_endpoint" { |
| 11 | + description = "Collection-specific endpoint used to submit index, search, and data upload requests to an OpenSearch Serverless collection" |
| 12 | + value = module.opensearch_collection_public.endpoint |
| 13 | +} |
| 14 | + |
| 15 | +output "opensearch_collection_public_dashboard_endpoint" { |
| 16 | + description = "Collection-specific endpoint used to access OpenSearch Dashboards" |
| 17 | + value = module.opensearch_collection_public.dashboard_endpoint |
| 18 | +} |
| 19 | + |
| 20 | +output "opensearch_collection_public_kms_key_arn" { |
| 21 | + description = "The ARN of the Amazon Web Services KMS key used to encrypt the collection" |
| 22 | + value = module.opensearch_collection_public.kms_key_arn |
| 23 | +} |
| 24 | + |
| 25 | +output "opensearch_collection_public_id" { |
| 26 | + description = "Unique identifier for the collection" |
| 27 | + value = module.opensearch_collection_public.id |
| 28 | +} |
| 29 | + |
| 30 | +output "opensearch_collection_public_encryption_policy_version" { |
| 31 | + description = "The version of the encryption policy" |
| 32 | + value = module.opensearch_collection_public.encryption_policy_version |
| 33 | +} |
| 34 | + |
| 35 | +output "opensearch_collection_public_encryption_policy" { |
| 36 | + description = "The JSON policy document of the encryption policy" |
| 37 | + value = module.opensearch_collection_public.encryption_policy |
| 38 | +} |
| 39 | + |
| 40 | +output "opensearch_collection_public_network_policy_version" { |
| 41 | + description = "The version of the network policy" |
| 42 | + value = module.opensearch_collection_public.network_policy_version |
| 43 | +} |
| 44 | + |
| 45 | +output "opensearch_collection_public_network_policy" { |
| 46 | + description = "The JSON policy document of the network policy" |
| 47 | + value = module.opensearch_collection_public.network_policy |
| 48 | +} |
| 49 | + |
| 50 | +output "opensearch_collection_public_access_policy_version" { |
| 51 | + description = "The version of the access policy" |
| 52 | + value = module.opensearch_collection_public.access_policy_version |
| 53 | +} |
| 54 | + |
| 55 | +output "opensearch_collection_public_access_policy" { |
| 56 | + description = "The JSON policy document of the access policy" |
| 57 | + value = module.opensearch_collection_public.access_policy |
| 58 | +} |
| 59 | + |
| 60 | +output "opensearch_collection_public_lifecycle_policy_version" { |
| 61 | + description = "The version of the lifecycle policy" |
| 62 | + value = module.opensearch_collection_public.lifecycle_policy_version |
| 63 | +} |
| 64 | + |
| 65 | +output "opensearch_collection_public_lifecycle_policy" { |
| 66 | + description = "The JSON policy document of the lifecycle policy" |
| 67 | + value = module.opensearch_collection_public.lifecycle_policy |
| 68 | +} |
| 69 | + |
| 70 | +################################################################################ |
| 71 | +# OpenSearch Private Collection |
| 72 | +################################################################################ |
| 73 | + |
| 74 | +output "opensearch_collection_private_arn" { |
| 75 | + description = "Amazon Resource Name (ARN) of the collection" |
| 76 | + value = module.opensearch_collection_private.arn |
| 77 | +} |
| 78 | + |
| 79 | +output "opensearch_collection_private_endpoint" { |
| 80 | + description = "Collection-specific endpoint used to submit index, search, and data upload requests to an OpenSearch Serverless collection" |
| 81 | + value = module.opensearch_collection_private.endpoint |
| 82 | +} |
| 83 | + |
| 84 | +output "opensearch_collection_private_dashboard_endpoint" { |
| 85 | + description = "Collection-specific endpoint used to access OpenSearch Dashboards" |
| 86 | + value = module.opensearch_collection_private.dashboard_endpoint |
| 87 | +} |
| 88 | + |
| 89 | +output "opensearch_collection_private_kms_key_arn" { |
| 90 | + description = "The ARN of the Amazon Web Services KMS key used to encrypt the collection" |
| 91 | + value = module.opensearch_collection_private.kms_key_arn |
| 92 | +} |
| 93 | + |
| 94 | +output "opensearch_collection_private_id" { |
| 95 | + description = "Unique identifier for the collection" |
| 96 | + value = module.opensearch_collection_private.id |
| 97 | +} |
| 98 | + |
| 99 | +output "opensearch_collection_private_encryption_policy_version" { |
| 100 | + description = "The version of the encryption policy" |
| 101 | + value = module.opensearch_collection_private.encryption_policy_version |
| 102 | +} |
| 103 | + |
| 104 | +output "opensearch_collection_private_encryption_policy" { |
| 105 | + description = "The JSON policy document of the encryption policy" |
| 106 | + value = module.opensearch_collection_private.encryption_policy |
| 107 | +} |
| 108 | + |
| 109 | +output "opensearch_collection_private_network_policy_version" { |
| 110 | + description = "The version of the network policy" |
| 111 | + value = module.opensearch_collection_private.network_policy_version |
| 112 | +} |
| 113 | + |
| 114 | +output "opensearch_collection_private_network_policy" { |
| 115 | + description = "The JSON policy document of the network policy" |
| 116 | + value = module.opensearch_collection_private.network_policy |
| 117 | +} |
| 118 | + |
| 119 | +output "opensearch_collection_private_access_policy_version" { |
| 120 | + description = "The version of the access policy" |
| 121 | + value = module.opensearch_collection_private.access_policy_version |
| 122 | +} |
| 123 | + |
| 124 | +output "opensearch_collection_private_access_policy" { |
| 125 | + description = "The JSON policy document of the access policy" |
| 126 | + value = module.opensearch_collection_private.access_policy |
| 127 | +} |
| 128 | + |
| 129 | +output "opensearch_collection_private_lifecycle_policy_version" { |
| 130 | + description = "The version of the lifecycle policy" |
| 131 | + value = module.opensearch_collection_private.lifecycle_policy_version |
| 132 | +} |
| 133 | + |
| 134 | +output "opensearch_collection_private_lifecycle_policy" { |
| 135 | + description = "The JSON policy document of the lifecycle policy" |
| 136 | + value = module.opensearch_collection_private.lifecycle_policy |
| 137 | +} |
0 commit comments