-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1534 from erhancagirici/fix-opensearch-domain-cus…
…tom-diff fix custom diff for Domain.opensearch ignoring valid diff
- Loading branch information
Showing
2 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
examples/opensearch/v1beta1/domain-with-advanced-security-options.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# SPDX-FileCopyrightText: 2024 The Crossplane Authors <https://crossplane.io> | ||
# | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
apiVersion: opensearch.aws.upbound.io/v1beta1 | ||
kind: Domain | ||
metadata: | ||
annotations: | ||
meta.upbound.io/example-id: opensearch/v1beta1/domain | ||
labels: | ||
testing.upbound.io/example-name: example-advanced-security-options | ||
name: example-advanced-security-options | ||
spec: | ||
writeConnectionSecretToRef: | ||
name: example-aso-domain | ||
namespace: default | ||
forProvider: | ||
domainName: ${Rand.RFC1123Subdomain} | ||
engineVersion: OpenSearch_1.0 | ||
region: us-west-1 | ||
advancedSecurityOptions: | ||
- enabled: true | ||
internalUserDatabaseEnabled: false | ||
masterUserOptions: | ||
- masterUserArn: arn:aws:iam::${data.aws_account_id}:user/example | ||
nodeToNodeEncryption: | ||
- enabled: true | ||
encryptAtRest: | ||
- enabled: true | ||
domainEndpointOptions: | ||
- enforceHttps: true | ||
clusterConfig: | ||
- instanceType: m4.large.search | ||
ebsOptions: | ||
- ebsEnabled: true | ||
volumeType: gp2 | ||
volumeSize: 10 |