summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/resources/schema
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-09-07 11:54:54 +0200
committerMartin Polden <mpolden@mpolden.no>2022-09-12 09:27:42 +0200
commit89dd1b69ed6d036715969bbe2d1c28d20c731d43 (patch)
tree1fdc5c966907496746c1394d825cc549d9f40858 /config-model/src/main/resources/schema
parent939eb860022dde6689c1dabae11ff640d529e9a1 (diff)
Allow cloud-account attribute on non-production elements
Diffstat (limited to 'config-model/src/main/resources/schema')
-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 }? &