Skip to content

Commit b2a3049

Browse files
author
iru
authored
docs: clarify ecs/vpc/subnet usage (#60)
* docs: clarify ecs/vpc/subnet usage * docs: clarify ecs/vpc/subnet usage * docs: clarify ecs/vpc/subnet usage
1 parent 6feda59 commit b2a3049

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

templates/CloudVision.yaml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,25 @@ Parameters:
6969
ExistentECSCluster:
7070
Type: String
7171
Default: ""
72-
Description: Leave it blank to let us to deploy the infrastructure required for running Sysdig for Cloud
72+
Description: |
73+
If left blank new required infrastructure will be deployed; ECS, VPC and Subnet.
74+
Otherwise, specify all three parameters.
75+
7376
ExistentECSClusterVPC:
7477
Type: String
7578
Default: ""
76-
Description: Leave it blank to let us to deploy the infrastructure required for running Sysdig for Cloud
79+
Description: |
80+
If left blank new required infrastructure will be deployed; ECS, VPC and Subnet.
81+
Otherwise, specify all three parameters.
82+
7783
ExistentECSClusterPrivateSubnets:
7884
Type: List<String>
7985
Default: ""
80-
Description: Leave it blank to let us to deploy the infrastructure required for running Sysdig for Cloud
86+
Description: |
87+
If left blank new required infrastructure will be deployed; ECS, VPC and Subnet.
88+
Otherwise, specify all three parameters.
89+
Two subnets are required. eg. 'subnet-foo, subnet-bar'
90+
8191
ExistentCloudTrailSNSTopic:
8292
Type: String
8393
Default: ""
@@ -206,4 +216,4 @@ Resources:
206216
Parameters:
207217
SysdigRoleName: !Ref SysdigRoleName
208218
SysdigExternalID: !Ref SysdigExternalID
209-
SysdigTrustedIdentity: !Ref SysdigTrustedIdentity
219+
SysdigTrustedIdentity: !Ref SysdigTrustedIdentity

templates/Makefile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# requires AWS_PROFILE
2+
# bucket will be created if it does not exist
13
S3_BUCKET ?= "s4c-cft"
24
S3_PREFIX ?= "test"
35
# We need the REGION or the TemplateURLs might be created for a different region, resulting in a deployment error
4-
S3_REGION ?= "eu-west-1"
6+
S3_REGION ?= "eu-west-1" # ireland
57
SECURE_API_TOKEN ?= ""
68

79
.PHONY: packaged-template.yaml
@@ -37,3 +39,11 @@ ci: packaged-template.yaml
3739

3840
clean:
3941
aws cloudformation delete-stack --stack-name "CloudVisionTest"
42+
43+
44+
#
45+
# local-test-manual:
46+
# (have not found a way to do it via cli)
47+
# aws console > cloudformation > create new stack (template, upload template: select ./templates/Cloudvision.yaml)
48+
# note: this will upload the template into an s3 bucket, remember to delete it afterwards
49+
#

0 commit comments

Comments
 (0)