summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-01-16 15:41:26 +0100
committerjonmv <venstad@gmail.com>2023-01-17 15:49:42 +0100
commit12ef34b0204e5acee25655139e7f6e79cefe983b (patch)
tree96c497e68be57d41f62ba9ae00b60042cf2ce32d /config-model/src/main/resources
parent69d0f324263f0075a283b66bca6fab2a12b2b66e (diff)
Parse, validate and use new zone endpoint syntax
Diffstat (limited to 'config-model/src/main/resources')
-rw-r--r--config-model/src/main/resources/schema/deployment.rnc11
1 files changed, 10 insertions, 1 deletions
diff --git a/config-model/src/main/resources/schema/deployment.rnc b/config-model/src/main/resources/schema/deployment.rnc
index 444f66a92ab..d63b8885a57 100644
--- a/config-model/src/main/resources/schema/deployment.rnc
+++ b/config-model/src/main/resources/schema/deployment.rnc
@@ -150,12 +150,21 @@ EndpointInstance = element instance {
text
}
+AllowedUrn = element allow {
+ attribute with { xsd:string } &
+ attribute arn { xsd:string }? &
+ attribute project { xsd:string }?
+}
+
Endpoint = element endpoint {
attribute id { xsd:string }? &
attribute container-id { xsd:string } &
attribute region { xsd:string }? &
+ attribute type { xsd:string }? &
+ attribute enabled { xsd:boolean }? &
EndpointRegion* &
- EndpointInstance*
+ EndpointInstance* &
+ AllowedUrn*
}
Endpoints = element endpoints {