Skip to content

Commit

Permalink
move mysql tarball to ./aws/testdata (hashicorp#13333)
Browse files Browse the repository at this point in the history
  • Loading branch information
appilon authored and adamdecaf committed May 28, 2020
1 parent 1218619 commit 0c2b1f8
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 = "./testdata/mysql-5-6-xtrabackup.tar.gz"
etag = "${filemd5("./testdata/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 @@ -2260,8 +2260,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 = "./testdata/mysql-5-6-xtrabackup.tar.gz"
etag = "${filemd5("./testdata/mysql-5-6-xtrabackup.tar.gz")}"
}
resource "aws_iam_role" "rds_s3_access_role" {
Expand Down
File renamed without changes.

0 comments on commit 0c2b1f8

Please sign in to comment.