Skip to content

Commit

Permalink
yaml lines not needed conncection configuraion tests switched back to…
Browse files Browse the repository at this point in the history
… metadata approach

Signed-off-by: Maxwell Brown <[email protected]>
  • Loading branch information
Galactus22625 committed Jan 3, 2025
1 parent 5d59aef commit 2ab0612
Showing 1 changed file with 1 addition and 178 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,181 +118,4 @@ dlq-file-and-dlq-plugin:
bucket: "my-dlq-bucket"
key_path_prefix: "dlq-files/"
dlq_file: foo.txt
max_retries: 10
empty-sink:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws-serverless-default:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
cert: "./src/test/resources/test-ca.pem"
aws:
serverless: true
region: "us-east-2"
sts_role_arn: "arn:aws:iam::123456789012:role/test-role"
es6-default:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
distribution_version: "es6"
aws-serverless-no-cert:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws:
serverless: true
region: "us-east-2"
sts_role_arn: "arn:aws:iam::123456789012:role/test-role"
basic-credentials-no-cert:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
basic-credentials-no-cert-insecure:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
insecure: true
basic-credentials-with-cert:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
cert: "./src/test/resources/test-ca.pem"
connect_timeout: 5
socket_timeout: 10
aws-region-only:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws:
region: "us-east-2"
serverless-options:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
aws:
serverless: true
region: "us-east-2"
sts_role_arn: "arn:aws:iam::123456789012:role/test-role"
serverless_options:
network_policy_name: "test network policy"
collection_name: "test collection"
vpce_id: "test vpce id"
aws-region-only-insecure:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws:
region: "us-east-1"
insecure: true
aws-with-cert:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws:
region: "us-east-1"
cert: "./src/test/resources/test-ca.pem"
aws-with-cert-and-arn:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws:
region: "us-east-1"
sts_role_arn: "arn:aws:iam::123456789012:role/test-role"
cert: "./src/test/resources/test-ca.pem"
aws-with-2-header:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
aws:
region: "us-east-1"
sts_role_arn: "arn:aws:iam::123456789012:role/test-role"
sts_external_id: "test-external-id"
sts_header_overrides:
header1: "test-header-1"
header2: "test-header-2"
valid-proxy-ip:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "121.121.121.121:80"
valid-proxy-host-name:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "example.com:80"
valid-http-proxy-scheme:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "http://example.com:4350"
invalid-http-proxy-port:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "example.com:port"
invalid-http-proxy-no-port:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "example.com"
invalid-http-proxy-port-not-in-range:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "example.com:888888"
invalid-http-proxy-not-http:
sink:
opensearch:
hosts: [ "http://localhost:9200" ]
username: "test-username"
password: "test-password"
connect_timeout: 5
socket_timeout: 10
cert: "./src/test/resources/test-ca.pem"
proxy: "socket://example.com:port"
max_retries: 10

0 comments on commit 2ab0612

Please sign in to comment.