-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathLDAPVerify.json
More file actions
76 lines (76 loc) · 1.95 KB
/
LDAPVerify.json
File metadata and controls
76 lines (76 loc) · 1.95 KB
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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "This template creates resources from the MongoDB Atlas API, this will be billed to your Atlas account.",
"Parameters": {
"Profile": {
"Type": "String",
"Description": "MongoDB Atlas Proj Profile name",
"Default": "default",
"ConstraintDescription": ""
},
"MongoDBAtlasProjectId": {
"Type": "String",
"Description": "MongoDB project Key"
},
"BindPassword": {
"Type": "String",
"Description": "Password used to authenticate the bindUsername."
},
"BindUsername": {
"Type": "String",
"Description": "User DN that Atlas uses to connect to the LDAP server. Write in the format of a full DN"
},
"Hostname": {
"Type": "String",
"Description": "FQDN or IP address of the host that serves the LDAP directory. This host must be visible to the internet or connected to your Atlas cluster with VPC Peering."
},
"Port": {
"Type": "Number",
"Description": "Port to which the LDAP server listens for client connections. This parameter use a default value of 636.",
"Default": 636
}
},
"Mappings": {},
"Resources": {
"LdapVerify": {
"Type": "MongoDB::Atlas::LDAPVerify",
"Properties": {
"ProjectId": {
"Ref": "MongoDBAtlasProjectId"
},
"BindPassword": {
"Ref": "BindPassword"
},
"BindUsername": {
"Ref": "BindUsername"
},
"HostName": {
"Ref": "Hostname"
},
"Port": {
"Ref": "Port"
},
"Profile": {
"Ref": "Profile"
}
}
}
},
"Outputs": {
"ResourceId": {
"Value": {
"Ref": "LdapVerify"
},
"Description": "Ldap Id"
},
"Status": {
"Value": {
"Fn::GetAtt": [
"LdapVerify",
"Status"
]
},
"Description": "Ldap Status"
}
}
}