Skip to content

Commit 58d731a

Browse files
author
iru
committed
chore(typo)
1 parent b1d2359 commit 58d731a

File tree

3 files changed

+6
-6
lines changed
  • examples-internal
  • examples/single-account

3 files changed

+6
-6
lines changed

examples-internal/single-account-scanning/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module "codebuild" {
4242
secure_api_token_secret_name = module.ssm.secure_api_token_secret_name
4343

4444
tags = var.tags
45-
# note. this is required to avoid racing conditions
45+
# note. this is required to avoid race conditions
4646
depends_on = [module.ssm]
4747
}
4848

@@ -64,6 +64,6 @@ module "cloud_scanning" {
6464
vpc_subnets = module.ecs_fargate_cluster.vpc_subnets
6565

6666
tags = var.tags
67-
# note. this is required to avoid racing conditions
67+
# note. this is required to avoid race conditions
6868
depends_on = [module.cloudtrail, module.ecs_fargate_cluster, module.codebuild, module.ssm]
6969
}

examples-internal/single-account-without-bench/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ module "codebuild" {
7171
secure_api_token_secret_name = module.ssm.secure_api_token_secret_name
7272

7373
tags = var.tags
74-
# note. this is required to avoid racing conditions
74+
# note. this is required to avoid race conditions
7575
depends_on = [module.ssm]
7676
}
7777

@@ -93,6 +93,6 @@ module "cloud_scanning" {
9393
vpc_subnets = module.ecs_fargate_cluster.vpc_subnets
9494

9595
tags = var.tags
96-
# note. this is required to avoid racing conditions
96+
# note. this is required to avoid race conditions
9797
depends_on = [module.cloudtrail, module.ecs_fargate_cluster, module.codebuild, module.ssm]
9898
}

examples/single-account/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ module "codebuild" {
7171
secure_api_token_secret_name = module.ssm.secure_api_token_secret_name
7272

7373
tags = var.tags
74-
# note. this is required to avoid racing conditions
74+
# note. this is required to avoid race conditions
7575
depends_on = [module.ssm]
7676
}
7777

@@ -93,7 +93,7 @@ module "cloud_scanning" {
9393
vpc_subnets = module.ecs_fargate_cluster.vpc_subnets
9494

9595
tags = var.tags
96-
# note. this is required to avoid racing conditions
96+
# note. this is required to avoid race conditions
9797
depends_on = [module.cloudtrail, module.ecs_fargate_cluster, module.codebuild, module.ssm]
9898
}
9999

0 commit comments

Comments
 (0)