You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disables automatic alert creation. When set to `true`, Atlas doesn't automatically create organization-level alerts. Defaults to `true` for new Atlas Organizations created with the provider to prevent infrastructure drift caused by creation of new alerts.
Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to `true`. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/
Copy file name to clipboardExpand all lines: cfn-resources/organization/mongodb-atlas-organization.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,16 @@
51
51
"description": "AwsSecretName used to set newly created Org credentials information.",
52
52
"default": "default"
53
53
},
54
+
"SkipDefaultAlertsSettings": {
55
+
"type": "boolean",
56
+
"description": "Disables automatic alert creation. When set to `true`, Atlas doesn't automatically create organization-level alerts. Defaults to `true` for new Atlas Organizations created with the provider to prevent infrastructure drift caused by creation of new alerts.",
57
+
"default": true
58
+
},
59
+
"GenAIFeaturesEnabled": {
60
+
"type": "boolean",
61
+
"description": "Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to `true`. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/",
62
+
"default": true
63
+
},
54
64
"OrgId": {
55
65
"type": "string",
56
66
"description": "Unique 24-hexadecimal digit string that identifies the organization that contains your projects. Use the /orgs endpoint to retrieve all organizations to which the authenticated user has access.",
Copy file name to clipboardExpand all lines: examples/organization/organization.json
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,26 @@
61
61
"false"
62
62
],
63
63
"Default": "false"
64
+
},
65
+
"SkipDefaultAlertsSettings": {
66
+
"Type": "String",
67
+
"ConstraintDescription": "boolean",
68
+
"AllowedValues": [
69
+
"true",
70
+
"false"
71
+
],
72
+
"Default": "true",
73
+
"Description": "SkipDefaultAlertsSettings"
74
+
},
75
+
"GenAIFeaturesEnabled": {
76
+
"Type": "String",
77
+
"ConstraintDescription": "boolean",
78
+
"AllowedValues": [
79
+
"true",
80
+
"false"
81
+
],
82
+
"Default": "true",
83
+
"Description": "Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to `true`. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/"
0 commit comments