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

[CI] Metricbeat: set AWS region to terraform.tf #39675

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Fix DB instance type
  • Loading branch information
pazone committed May 23, 2024
commit 449683e3af16b2ce18ff6f7367c23c2c8ea0635b
2 changes: 0 additions & 2 deletions .buildkite/x-pack/pipeline.xpack.metricbeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,6 @@ steps:

- label: ":linux: Cloud (MODULE) Tests"
key: "x-pack-metricbeat-extended-cloud-test"
skip: "Not a stage on Jenkins & elastic/ingest-dev#3170"
# https://github.com/elastic/ingest-dev/issues/3170
if: build.env("GITHUB_PR_LABELS") =~ /.*aws.*/
command: |
set -euo pipefail
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/aws/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "aws_db_instance" "test" {
identifier = "metricbeat-test-${random_id.suffix.hex}"
allocated_storage = 20 // Gigabytes
engine = "mysql"
instance_class = "db.t2.micro"
instance_class = "db.t3.micro"
name = "metricbeattest"
username = "foo"
password = random_password.db.result
Expand Down
Loading