Skip to content

Commit 6e3b16a

Browse files
author
iru
committed
chore: naming adjustments
1 parent 85f73cb commit 6e3b16a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

examples/organizational/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Notice that:
107107
| <a name="input_sysdig_secure_for_cloud_member_account_id"></a> [sysdig\_secure\_for\_cloud\_member\_account\_id](#input\_sysdig\_secure\_for\_cloud\_member\_account\_id) | organizational member account where the secure-for-cloud workload is going to be deployed | `string` | n/a | yes |
108108
| <a name="input_cloudtrail_is_multi_region_trail"></a> [cloudtrail\_is\_multi\_region\_trail](#input\_cloudtrail\_is\_multi\_region\_trail) | true/false whether cloudtrail will ingest multiregional events. testing/economization purpose. | `bool` | `true` | no |
109109
| <a name="input_cloudtrail_kms_enable"></a> [cloudtrail\_kms\_enable](#input\_cloudtrail\_kms\_enable) | true/false whether cloudtrail delivered events to S3 should persist encrypted | `bool` | `true` | no |
110-
| <a name="input_connector_ecs_task_role_name"></a> [connector\_ecs\_task\_role\_name](#input\_connector\_ecs\_task\_role\_name) | Name for the ecs task role. This is only required to resolve cyclic dependency with organizational approach | `string` | `"ECSTaskRole"` | no |
110+
| <a name="input_connector_ecs_task_role_name"></a> [connector\_ecs\_task\_role\_name](#input\_connector\_ecs\_task\_role\_name) | Name for the ecs task role. This is only required to resolve cyclic dependency with organizational approach | `string` | `"organizational-ECSTaskRole"` | no |
111111
| <a name="input_name"></a> [name](#input\_name) | Name to be assigned to all child resources. A suffix may be added internally when required. Use default value unless you need to install multiple instances | `string` | `"sfc"` | no |
112112
| <a name="input_region"></a> [region](#input\_region) | Default region for resource creation in both organization master and secure-for-cloud member account | `string` | `"eu-central-1"` | no |
113113
| <a name="input_sysdig_secure_endpoint"></a> [sysdig\_secure\_endpoint](#input\_sysdig\_secure\_endpoint) | Sysdig Secure API endpoint | `string` | `"https://secure.sysdig.com"` | no |

examples/organizational/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ variable "sysdig_secure_for_cloud_member_account_id" {
2020

2121
variable "connector_ecs_task_role_name" {
2222
type = string
23-
default = "ECSTaskRole"
23+
default = "organizational-ECSTaskRole"
2424
description = "Name for the ecs task role. This is only required to resolve cyclic dependency with organizational approach"
2525
}
2626

examples/single-account-k8s/cloud-scanning.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#-------------------------------------
44
module "cloud_scanning_sqs" {
55
source = "../../modules/infrastructure/cloudtrail-subscription-sqs"
6-
name = "${var.name}-cloud_scanning"
6+
name = var.name
77
sns_topic_arn = module.cloudtrail.sns_topic_arn
88
tags = var.tags
99
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "cloud_scanning_sqs" {
22
source = "../../../modules/infrastructure/cloudtrail-subscription-sqs"
3-
name = "${var.name}-cloud_scanning"
3+
name = var.name
44
sns_topic_arn = var.sns_topic_arn
55
tags = var.tags
66
}

0 commit comments

Comments
 (0)