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
*`gen_ai_features_enabled` - (Optional) 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/.
36
36
*`skip_default_alerts_settings` - (Optional) Flag that indicates whether to prevent Atlas from automatically creating organization-level alerts not explicitly managed through Terraform. Defaults to `true`.
37
37
38
-
# Data Source: mongodbatlas_organizations
39
-
40
-
`mongodbatlas_organizations` describes all MongoDB Atlas Organizations. This represents organizations that have been created.
41
-
42
-
43
-
## Example Usage
44
-
45
-
```terraform
46
-
data "mongodbatlas_organizations" "test" {
47
-
page_num = 1
48
-
items_per_page = 5
49
-
}
50
-
```
51
-
52
-
## Argument Reference
53
-
*`page_num` - (Optional) The page to return. Defaults to `1`.
54
-
*`items_per_page` - (Optional) Number of items to return per page, up to a maximum of 500. Defaults to `100`.
55
-
56
-
57
-
*`id` - Autogenerated Unique ID for this data source.
58
-
*`total_count` - Represents the total number of organizations
59
-
60
-
*`results` - A list where each item represents an Organization.
61
-
62
-
63
-
### Organization
64
-
65
-
*`name` - Human-readable label that identifies the organization.
66
-
*`id` - Unique 24-hexadecimal digit string that identifies the organization.
67
-
*`is_deleted` - Flag that indicates whether this organization has been deleted.
68
-
*`api_access_list_required` - (Optional) Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
69
-
*`multi_factor_auth_required` - (Optional) Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
70
-
*`restrict_employee_access` - (Optional) Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
71
-
*`gen_ai_features_enabled` - (Optional) 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/.
72
-
*`skip_default_alerts_settings` - (Optional) Flag that indicates whether to prevent Atlas from automatically creating organization-level alerts not explicitly managed through Terraform. Defaults to `true`.
73
-
74
38
~> **NOTE:** - If you created an organization with our Terraform provider version >=1.30.0, this field will be set to `true` by default.<br> - If you have an existing organization created with our Terraform provider version <1.30.0, this field might be `false`, which is the [API default value](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Organizations/operation/createOrganization). To prevent creation of future default alerts, you can explicitly set this to `true` using the [`mongodbatlas_organization`](../resources/organization.md) resource.
0 commit comments