-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfastly-tls-certificate.json
208 lines (208 loc) · 6.32 KB
/
fastly-tls-certificate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{
"typeName": "Fastly::Tls::Certificate",
"description": "Manage a custom Tls Certificate upload",
"sourceUrl": "https://github.com/aws-ia/cloudformation-fastly-resource-providers",
"definitions": {
"FastlyAccess": {
"description": "Properties needed to access Fastly.",
"type": "object",
"properties": {
"Token": {
"type": "string",
"description": "API token used to access Fastly"
}
},
"required": [
"Token"
],
"additionalProperties": false
},
"CertBlob": {
"description": "The PEM-formatted certificate blob. Required.",
"type": "string"
},
"Name": {
"description": "A customizable name for your certificate. Defaults to the certificate's Common Name or first Subject Alternative Names (SAN) entry. Optional.",
"type": "string"
},
"Relationships": {
"type": "object",
"additionalProperties": false,
"properties": {
"TlsDomains": {
"type": "object",
"additionalProperties": false,
"properties": {
"Data": {
"$ref": "#/definitions/Data"
}
}
}
}
},
"Data": {
"type": "array",
"uniqueItems": false,
"insertionOrder": false,
"items": {
"type": "object",
"properties": {
"Id": {
"type": "string"
}
},
"additionalProperties": false
}
},
"Type": {
"description": "Resource type. [Default tls_certificate]",
"type": "string",
"enum": [
"tls_certificate"
]
},
"CreatedAt": {
"description": "Date and time in ISO 8601 format. Read-only.",
"type": "string",
"format": "date-time"
},
"UpdatedAt": {
"description": "Date and time in ISO 8601 format. Read-only.",
"type": "string",
"format": "date-time"
},
"DeletedAt": {
"description": "Date and time in ISO 8601 format. Read-only.",
"type": "string",
"format": "date-time"
},
"Id": {
"description": "Alphanumeric string identifying a TLS certificate. Read-only.",
"type": "string"
},
"IssuedTo": {
"description": "The hostname for which a certificate was issued. Read-only.",
"type": "string"
},
"Issuer": {
"description": "The certificate authority that issued the certificate. Read-only.",
"type": "string"
},
"NotAfter": {
"description": "Time-stamp (GMT) when the certificate will expire. Must be in the future to be used to terminate TLS traffic. Read-only.",
"type": "string"
},
"NotBefore": {
"description": "Time-stamp (GMT) when the certificate will become valid. Must be in the past to be used to terminate TLS traffic. Read-only.",
"type": "string"
},
"Replace": {
"description": "A recommendation from Fastly indicating the key associated with this certificate is in need of rotation. Read-only.",
"type": "string"
},
"SerialNumber": {
"description": "A value assigned by the issuer that is unique to a certificate. Read-only.",
"type": "string"
},
"SignatureAlgorithm": {
"description": "The algorithm used to sign the certificate. Read-only.",
"type": "string"
}
},
"typeConfiguration": {
"properties": {
"FastlyAccess": {
"$ref": "#/definitions/FastlyAccess"
}
},
"additionalProperties": false,
"required": [
"FastlyAccess"
]
},
"properties": {
"Id": {
"type": "string"
},
"Type": {
"type": "string"
},
"Attributes": {
"type": "object",
"additionalProperties": false,
"properties": {
"Name": {
"$ref": "#/definitions/Name"
},
"CertBlob": {
"$ref": "#/definitions/CertBlob"
},
"CreatedAt": {
"$ref": "#/definitions/CreatedAt"
},
"Issuer": {
"$ref": "#/definitions/Issuer"
},
"NotAfter": {
"$ref": "#/definitions/NotAfter"
},
"NotBefore": {
"$ref": "#/definitions/NotBefore"
},
"SignatureAlgorithm": {
"$ref": "#/definitions/SignatureAlgorithm"
},
"SerialNumber": {
"$ref": "#/definitions/SerialNumber"
},
"UpdatedAt": {
"$ref": "#/definitions/UpdatedAt"
},
"Replace": {
"$ref": "#/definitions/Replace"
},
"IssuedTo": {
"$ref": "#/definitions/IssuedTo"
}
},
"required": [
"CertBlob"
]
},
"Relationships": {
"$ref": "#/definitions/Relationships"
}
},
"additionalProperties": false,
"readOnlyProperties": [
"/properties/Id"
],
"writeOnlyProperties": [
"/properties/Attributes/CertBlob"
],
"primaryIdentifier": [
"/properties/Id"
],
"handlers": {
"create": {
"permissions": [
]
},
"read": {
"permissions": [
]
},
"update": {
"permissions": [
]
},
"delete": {
"permissions": [
]
},
"list": {
"permissions": [
]
}
}
}