Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update instance group name for ingesting RDS cloudwatch logs #139

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opensearch-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ instance_groups:
instances: 1
vm_type: m6i.large

- name: ingestor_cloudwatch
- name: ingestor_cloudwatch_rds
instances: 1

- name: maintenance
Expand Down
6 changes: 3 additions & 3 deletions opensearch-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ instance_groups:
networks:
- name: services

- name: ingestor_cloudwatch
- name: ingestor_cloudwatch_rds
instances: 1
jobs:
- name: bpm
Expand All @@ -403,7 +403,7 @@ instance_groups:
logstash_ingestor:
cloudwatch:
region: ((region))
prefix: ((cloudwatch_prefix))
prefix: ((rds_cloudwatch_prefix))
syslog_tls:
port: 6972
ssl_cert: ((ingestor_syslog_server_tls.certificate))
Expand Down Expand Up @@ -432,4 +432,4 @@ instance_groups:
- logs-opensearch-ingestor-profile
- 50GB_ephemeral_disk
networks:
- name: services
- name: services
2 changes: 1 addition & 1 deletion opensearch-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ instance_groups:
instances: 7
vm_type: r6i.xlarge.logsearch.ingestor

- name: ingestor_cloudwatch
- name: ingestor_cloudwatch_rds
instances: 1
vm_type: r6i.large

Expand Down
2 changes: 1 addition & 1 deletion opensearch-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ instance_groups:
instances: 1
vm_type: m6i.large

- name: ingestor_cloudwatch
- name: ingestor_cloudwatch_rds
instances: 1

- name: maintenance
Expand Down
10 changes: 5 additions & 5 deletions opsfiles/enable-node-tls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,21 +123,21 @@
path: /instance_groups/name=ingestor/jobs/name=opensearch/properties?/opensearch?/http?/ssl?
value: *http-tls-properties

# ingestor_cloudwatch
# ingestor_cloudwatch_rds
- type: replace
path: /instance_groups/name=ingestor_cloudwatch/jobs/name=opensearch/properties?/opensearch?/http_host?
path: /instance_groups/name=ingestor_cloudwatch_rds/jobs/name=opensearch/properties?/opensearch?/http_host?
value: 127.0.0.1

- type: replace
path: /instance_groups/name=ingestor_cloudwatch/jobs/name=opensearch/properties/opensearch?/admin?
path: /instance_groups/name=ingestor_cloudwatch_rds/jobs/name=opensearch/properties/opensearch?/admin?
value: *admin-tls-properties

- type: replace
path: /instance_groups/name=ingestor_cloudwatch/jobs/name=opensearch/properties/opensearch?/node?/ssl?
path: /instance_groups/name=ingestor_cloudwatch_rds/jobs/name=opensearch/properties/opensearch?/node?/ssl?
value: *node-tls-properties

- type: replace
path: /instance_groups/name=ingestor_cloudwatch/jobs/name=opensearch/properties?/opensearch?/http?/ssl?
path: /instance_groups/name=ingestor_cloudwatch_rds/jobs/name=opensearch/properties?/opensearch?/http?/ssl?
value: *http-tls-properties


Expand Down
4 changes: 2 additions & 2 deletions opsfiles/enable-proxy-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
- type: replace
path: /instance_groups/name=ingestor/jobs/name=opensearch/properties?/opensearch?/enable_proxy_auth
value: true
# ingestor_cloudwatch
# ingestor_cloudwatch_rds
- type: replace
path: /instance_groups/name=ingestor_cloudwatch/jobs/name=opensearch/properties?/opensearch?/enable_proxy_auth
path: /instance_groups/name=ingestor_cloudwatch_rds/jobs/name=opensearch/properties?/opensearch?/enable_proxy_auth
value: true
# add variable for auth proxy certs
- type: replace
Expand Down
Loading