Skip to content

Commit

Permalink
move mysql tarball to ./aws/test-fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
appilon committed May 15, 2020
1 parent 7fd165f commit 0ba61ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aws/resource_aws_db_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3191,8 +3191,8 @@ resource "aws_s3_bucket" "xtrabackup" {
resource "aws_s3_bucket_object" "xtrabackup_db" {
bucket = "${aws_s3_bucket.xtrabackup.id}"
key = "%s/mysql-5-6-xtrabackup.tar.gz"
source = "../files/mysql-5-6-xtrabackup.tar.gz"
etag = "${filemd5("../files/mysql-5-6-xtrabackup.tar.gz")}"
source = "./test-fixtures/mysql-5-6-xtrabackup.tar.gz"
etag = "${filemd5("./test-fixtures/mysql-5-6-xtrabackup.tar.gz")}"
}
resource "aws_iam_role" "rds_s3_access_role" {
Expand Down
4 changes: 2 additions & 2 deletions aws/resource_aws_rds_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2275,8 +2275,8 @@ resource "aws_s3_bucket" "xtrabackup" {
resource "aws_s3_bucket_object" "xtrabackup_db" {
bucket = "${aws_s3_bucket.xtrabackup.id}"
key = "%[2]s/mysql-5-6-xtrabackup.tar.gz"
source = "../files/mysql-5-6-xtrabackup.tar.gz"
etag = "${filemd5("../files/mysql-5-6-xtrabackup.tar.gz")}"
source = "./test-fixtures/mysql-5-6-xtrabackup.tar.gz"
etag = "${filemd5("./test-fixtures/mysql-5-6-xtrabackup.tar.gz")}"
}
resource "aws_iam_role" "rds_s3_access_role" {
Expand Down
File renamed without changes.

0 comments on commit 0ba61ea

Please sign in to comment.