You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: use-cases/org-existing-cloudtrail-ecs-vpc-subnet.md
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,15 @@ module "utils_ecs-vpc" {
95
95
- This will be required for the CloudConnector SQS Topic subscription.
96
96
- Use [`./modules/infrastructure/cloudtrail/sns_permissions.tf`](https://github.com/sysdiglabs/terraform-aws-secure-for-cloud/blob/master/modules/infrastructure/cloudtrail/sns_permissions.tf#L22) as guideline
97
97
98
+
99
+
- Existing ECS Cluster Workload Setup
100
+
-`ECS_CLUSTER_NAME` ex.: "sfc"
101
+
102
+
- Existing Networking Setup
103
+
-`ECS_VPC_ID` ex.: "vpc-0e91bfef6693f296b"
104
+
-`ECS_VPC_SUBNET_PRIVATE_ID_X` Two subnets for the VPC. ex.: "subnet-0c7d803ecdc88437b"
105
+
106
+
98
107
### Terraform Manifest Snippet
99
108
100
109
```terraform
@@ -113,13 +122,12 @@ provider "sysdig" {
113
122
}
114
123
115
124
provider "aws" {
116
-
region = "<AWS_REGION>" # must match s3 AND sns region
125
+
region = "<AWS_REGION>" # must match s3 AND sns region
117
126
}
118
127
119
-
# you can setup this provider as desired, just giving an example
120
128
provider "aws" {
121
129
alias = "member"
122
-
region = "<AWS_REGION>" # must match s3 AND sns region
130
+
region = "<AWS_REGION>" # must match s3 AND sns region
123
131
assume_role {
124
132
# 'OrganizationAccountAccessRole' is the default role created by AWS for management-account users to be able to admin member accounts.
0 commit comments