Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions lib/cloud-assembly/context-queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,34 @@ export interface SecurityGroupContextQuery extends ContextLookupRoleOptions {
* @default - None
*/
readonly vpcId?: string;

/**
* Security group description
*
* @default - None
*/
readonly description?: string;

/**
* Account ID of the owner of the security group
*
* @default - None
*/
readonly ownerId?: string;

/**
* The keys of tags assigned to the security group
*
* @default - None
*/
readonly tagKeys?: string[];

/**
* The key/value combination of a tag assigned to the security group
*
* @default - None
*/
readonly tags?: Record<string, string[]>;
}

/**
Expand Down
22 changes: 22 additions & 0 deletions schema/cloud-assembly.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -948,6 +948,25 @@
"description": "VPC ID (Default - None)",
"type": "string"
},
"description": {
"description": "Security group description (Default - None)",
"type": "string"
},
"ownerId": {
"description": "Account ID of the owner of the security group (Default - None)",
"type": "string"
},
"tagKeys": {
"description": "The keys of tags assigned to the security group (Default - None)",
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"description": "The key/value combination of a tag assigned to the security group (Default - None)",
"$ref": "#/definitions/Record<string,string[]>"
},
"account": {
"description": "Query account",
"type": "string"
Expand Down Expand Up @@ -975,6 +994,9 @@
"region"
]
},
"Record<string,string[]>": {
"type": "object"
},
"KeyContextQuery": {
"description": "Query input for looking up a KMS Key",
"type": "object",
Expand Down