Skip to content

Commit 798960e

Browse files
authored
Merge pull request #27 from aws-ia/fix_0.0.4
2 parents 111034d + 05f5a52 commit 798960e

19 files changed

+105
-6
lines changed

.header.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
This repository contains Terraform code which creates resources required to run a [DataSync task](https://https://aws.amazon.com/datasync/) to sync data within AWS and from on premises to AWS or vise-versa.
44

5+
![AWS Datasync](./datasync-main.png)
6+
57
AWS DataSync supports a wide variety of file and object storage systems on-premise and in AWS to facilitate data transfer.
68

79
For on-premises storage transfers : DataSync works with the following on-premises storage systems:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
This repository contains Terraform code which creates resources required to run a [DataSync task](https://https://aws.amazon.com/datasync/) to sync data within AWS and from on premises to AWS or vise-versa.
55

6+
![AWS Datasync](./datasync-main.png)
7+
68
AWS DataSync supports a wide variety of file and object storage systems on-premise and in AWS to facilitate data transfer.
79

810
For on-premises storage transfers : DataSync works with the following on-premises storage systems:

VERSION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
v0.0.3
2-
1+
v0.0.4

datasync-main.png

75.5 KB
Loading

examples/efs-to-s3/.header.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# EFS to S3
2+
3+
This example demonstrates how to create an EFS to S3 replication scenario using the AWS DataSync module.
4+
5+
![AWS Datasync EFS to S3](./datasync-examples-efs-to-s3.png)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
formatter: markdown
2+
header-from: .header.md
3+
settings:
4+
anchor: true
5+
color: true
6+
default: true
7+
escape: true
8+
html: true
9+
indent: 2
10+
required: true
11+
sensitive: true
12+
type: true
13+
14+
sort:
15+
enabled: true
16+
by: required
17+
18+
output:
19+
file: README.md
20+
mode: replace

examples/efs-to-s3/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<!-- BEGIN_TF_DOCS -->
2+
# EFS to S3
3+
4+
This example demonstrates how to create an EFS to S3 replication scenario using the AWS DataSync module.
5+
6+
![AWS Datasync EFS to S3](./datasync-examples-efs-to-s3.png)
7+
28
## Requirements
39

410
| Name | Version |
@@ -11,8 +17,8 @@
1117

1218
| Name | Version |
1319
|------|---------|
14-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.72.0 |
15-
| <a name="provider_random"></a> [random](#provider\_random) | n/a |
20+
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.65.0 |
21+
| <a name="provider_random"></a> [random](#provider\_random) | 3.6.2 |
1622

1723
## Modules
1824

84.8 KB
Loading

examples/efs-to-s3/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ module "backup_tasks" {
5757
posix_permissions = "NONE"
5858
uid = "NONE"
5959
gid = "NONE"
60+
verify_mode = "ONLY_FILES_TRANSFERRED"
6061
}
6162
schedule_expression = "cron(0 6 ? * MON-FRI *)" # Run at 6:00 am (UTC) every Monday through Friday:
6263
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# S3 to S3 Cross account
2+
3+
This example demonstrates how to create a S3 to S3 replication scenario across AWS Accounts using the AWS DataSync module.
4+
5+
![AWS Datasync S3 to S3 Cross Account](./datasync-examples-cross-account.png)

0 commit comments

Comments
 (0)