aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema/deployment.rnc
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-01-18 13:29:34 +0100
committerjonmv <venstad@gmail.com>2023-01-18 13:29:34 +0100
commit0cb625f5fd5f94b4b8025a9d4f9b546c7ec94d41 (patch)
tree1f4c98f26d6dc4b339ce26c4f3b550e186881300 /config-model/src/main/resources/schema/deployment.rnc
parenta395e87d6073c5b2d09dee8fdd2f5fb43f8192d4 (diff)
Revert "Merge pull request #25614 from vespa-engine/revert-25587-jonmv/private-endpoints"
This reverts commit 7b736f0a09444664cff118eac5b28e608632de72, reversing changes made to 6c457e6dd5993ec2ef15177dab4a16e3d3702b85.
Diffstat (limited to 'config-model/src/main/resources/schema/deployment.rnc')
-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 {