Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR web] config readme #2170

Merged
1 commit merged into from
Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions schemas/2019-08-01/tenantDeploymentTemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,12 @@
},
{
"$ref": "https://schema.management.azure.com/schemas/2021-02-01/Microsoft.Web.json#/tenant_resourceDefinitions/sourcecontrols"
},
{
"$ref": "https://schema.management.azure.com/schemas/2021-03-01/Microsoft.Web.json#/tenant_resourceDefinitions/publishingUsers"
},
{
"$ref": "https://schema.management.azure.com/schemas/2021-03-01/Microsoft.Web.json#/tenant_resourceDefinitions/sourcecontrols"
}
]
}
Expand Down
306 changes: 306 additions & 0 deletions schemas/2021-03-01/Microsoft.CertificateRegistration.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,306 @@
{
"id": "https://schema.management.azure.com/schemas/2021-03-01/Microsoft.CertificateRegistration.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.CertificateRegistration",
"description": "Microsoft CertificateRegistration Resource Types",
"resourceDefinitions": {
"certificateOrders": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-03-01"
]
},
"kind": {
"type": "string",
"description": "Kind of resource."
},
"location": {
"type": "string",
"description": "Resource Location."
},
"name": {
"type": "string",
"description": "Name of the certificate order."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AppServiceCertificateOrderProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "AppServiceCertificateOrder resource specific properties"
},
"resources": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/certificateOrders_certificates_childResource"
}
]
}
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.CertificateRegistration/certificateOrders"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.CertificateRegistration/certificateOrders"
},
"certificateOrders_certificates": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-03-01"
]
},
"kind": {
"type": "string",
"description": "Kind of resource."
},
"location": {
"type": "string",
"description": "Resource Location."
},
"name": {
"type": "string",
"description": "Name of the certificate."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AppServiceCertificate"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Key Vault container for a certificate that is purchased through Azure."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.CertificateRegistration/certificateOrders/certificates"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.CertificateRegistration/certificateOrders/certificates"
}
},
"definitions": {
"AppServiceCertificate": {
"type": "object",
"properties": {
"keyVaultId": {
"type": "string",
"description": "Key Vault resource Id."
},
"keyVaultSecretName": {
"type": "string",
"description": "Key Vault secret name."
}
},
"description": "Key Vault container for a certificate that is purchased through Azure."
},
"AppServiceCertificateOrderProperties": {
"type": "object",
"properties": {
"autoRenew": {
"oneOf": [
{
"type": "boolean",
"default": true
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "<code>true</code> if the certificate should be automatically renewed when it expires; otherwise, <code>false</code>."
},
"certificates": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/AppServiceCertificate"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "State of the Key Vault secret."
},
"csr": {
"type": "string",
"description": "Last CSR that was created for this order."
},
"distinguishedName": {
"type": "string",
"description": "Certificate distinguished name."
},
"keySize": {
"oneOf": [
{
"type": "integer",
"default": "2048"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Certificate key size."
},
"productType": {
"oneOf": [
{
"type": "string",
"enum": [
"StandardDomainValidatedSsl",
"StandardDomainValidatedWildCardSsl"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Certificate product type."
},
"validityInYears": {
"oneOf": [
{
"type": "integer",
"default": "1"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Duration in years (must be 1)."
}
},
"required": [
"productType"
],
"description": "AppServiceCertificateOrder resource specific properties"
},
"certificateOrders_certificates_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-03-01"
]
},
"kind": {
"type": "string",
"description": "Kind of resource."
},
"location": {
"type": "string",
"description": "Resource Location."
},
"name": {
"type": "string",
"description": "Name of the certificate."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AppServiceCertificate"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Key Vault container for a certificate that is purchased through Azure."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"certificates"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.CertificateRegistration/certificateOrders/certificates"
}
}
}
Loading