Skip to content

Commit

Permalink
feat(script): add output.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Zippo-Wang committed Nov 20, 2024
1 parent 8bf9e52 commit c89c086
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"vpc_id": {
"type": "string"
},
"vpc_cidr": {
"type": "string"
},
"subnet_cidrs": {
"type": "array",
"items": {
"type": "string"
}
},
"subnet_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"security_group_id": {
"type": "string"
},
"security_group_rules": {
"type": "array",
"items": {
"type": "string"
}
},
"queried_vpc_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"queried_subnet_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"queried_security_group_ids": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}

0 comments on commit c89c086

Please sign in to comment.