Skip to content

Commit d502f8c

Browse files
committed
updated doc and minor code fixes
1 parent bddd4c4 commit d502f8c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/efs-to-s3/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646

4747
| Name | Description |
4848
|------|-------------|
49-
| <a name="output_my_efs_locations"></a> [my\_efs\_locations](#output\_my\_efs\_locations) | n/a |
50-
| <a name="output_my_s3_locations"></a> [my\_s3\_locations](#output\_my\_s3\_locations) | n/a |
49+
| <a name="output_my_efs_locations"></a> [my\_efs\_locations](#output\_my\_efs\_locations) | DataSync EFS Location ARN |
50+
| <a name="output_my_s3_locations"></a> [my\_s3\_locations](#output\_my\_s3\_locations) | DataSync S3 Location ARN |
5151
<!-- END_TF_DOCS -->

examples/efs-to-s3/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ variable "efs_security_group_egress_cidr_block" {
1212

1313
variable "subnet-count" {
1414
type = number
15-
description = "Number of sunbets per type"
15+
description = "Number of sunbets per VPC"
1616
default = 1
1717
}

examples/efs-to-s3/vpc.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module "vpc" {
1313
azs = slice(data.aws_availability_zones.available.names, 0, (var.subnet-count))
1414
private_subnets = [for subnet in range(var.subnet-count) : cidrsubnet(var.vpc_cidr_block, 8, subnet)] # For Private subnets
1515
public_subnets = [for subnet in range(var.subnet-count) : cidrsubnet(var.vpc_cidr_block, 8, sum([subnet, var.subnet-count]))]
16-
name = "${random_pet.prefix.id}-gateway-vpc"
16+
name = "${random_pet.prefix.id}-datasync-vpc"
1717

1818
enable_dns_hostnames = true
1919
create_igw = true

0 commit comments

Comments
 (0)