summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-09-07 11:54:54 +0200
committerMartin Polden <mpolden@mpolden.no>2022-09-09 10:17:58 +0200
commiteae8cb8f38a3672f43188da5b80444aaf5b17631 (patch)
tree2d9e7fbed2a01a935dda30870d662f4ce2b63a24 /config-model
parentbd35cf8a0ddb7b17cbb44489ca09f4e3e37092dc (diff)
Allow cloud-account attribute on non-production elements
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/main/resources/schema/deployment.rnc10
1 files changed, 10 insertions, 0 deletions
diff --git a/config-model/src/main/resources/schema/deployment.rnc b/config-model/src/main/resources/schema/deployment.rnc
index 251134c91e8..b95c9539750 100644
--- a/config-model/src/main/resources/schema/deployment.rnc
+++ b/config-model/src/main/resources/schema/deployment.rnc
@@ -24,6 +24,8 @@ StepExceptInstance =
Endpoints? &
Test? &
Staging? &
+ Dev? &
+ Perf? &
Prod*
PrimitiveStep =
@@ -101,6 +103,14 @@ Staging = element staging {
text
}
+Dev = element dev {
+ attribute cloud-account { xsd:string }?
+}
+
+Perf = element perf {
+ attribute cloud-account { xsd:string }?
+}
+
Prod = element prod {
attribute global-service-id { text }? &
attribute athenz-service { xsd:string }? &