Skip to content

Commit

Permalink
Merge pull request #26 from aws-ia/fix_0.0.3
Browse files Browse the repository at this point in the history
updated README to include module registry path
  • Loading branch information
prabirsekhri authored Aug 30, 2024
2 parents 3a217b5 + c24630d commit 111034d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .header.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ S3 Location

```hcl
module "s3_location" {
source = "../../modules/datasync-locations"
source = "aws-ia/datasync/aws//modules/datasync-locations"
s3_locations = [
{
name = "datasync-s3"
Expand All @@ -53,7 +53,7 @@ EFS Location

```hcl
module "efs_location" {
source = "../../modules/datasync-locations"
source = "aws-ia/datasync/aws//modules/datasync-locations"
efs_locations = [
{
name = "datasync-efs"
Expand Down Expand Up @@ -81,7 +81,7 @@ Two locations, one as source and other as destination are required for the [Data

```hcl
module "backup_tasks" {
source = "../../modules/datasync-task"
source = "aws-ia/datasync/aws//modules/datasync-task"
datasync_tasks = [
{
name = "efs_to_s3"
Expand Down Expand Up @@ -168,7 +168,7 @@ Datasync Location and Task Modules are generic and do not have any cross account
```hcl
module "s3_dest_location" {
source = "../../modules/datasync-locations"
source = "aws-ia/datasync/aws//modules/datasync-locations"
s3_locations = [
{
name = "dest-bucket"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ S3 Location

```hcl
module "s3_location" {
source = "../../modules/datasync-locations"
source = "aws-ia/datasync/aws//modules/datasync-locations"
s3_locations = [
{
name = "datasync-s3"
Expand All @@ -54,7 +54,7 @@ EFS Location

```hcl
module "efs_location" {
source = "../../modules/datasync-locations"
source = "aws-ia/datasync/aws//modules/datasync-locations"
efs_locations = [
{
name = "datasync-efs"
Expand Down Expand Up @@ -82,7 +82,7 @@ Two locations, one as source and other as destination are required for the [Data

```hcl
module "backup_tasks" {
source = "../../modules/datasync-task"
source = "aws-ia/datasync/aws//modules/datasync-task"
datasync_tasks = [
{
name = "efs_to_s3"
Expand Down Expand Up @@ -169,7 +169,7 @@ Datasync Location and Task Modules are generic and do not have any cross account
```hcl
module "s3_dest_location" {
source = "../../modules/datasync-locations"
source = "aws-ia/datasync/aws//modules/datasync-locations"
s3_locations = [
{
name = "dest-bucket"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
v0.0.2
v0.0.3

0 comments on commit 111034d

Please sign in to comment.