This message was deleted.
# general
s
This message was deleted.
m
HI @loud-computer-69351, What do you mean with behavior has changed?
l
Hello @many-telephone-49025, when you create a MongoDB Atlas project with pulumi, these 4 options are now not enabled (since few days) ; you have to activate them manually
m
Ok got you! Let me check smth and report back
Hi @loud-computer-69351, its working fine for me:
Copy code
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := mongodbatlas.NewProject(ctx, "test", &mongodbatlas.ProjectArgs{
			Name:                              pulumi.String("test"),
			IsRealtimePerformancePanelEnabled: pulumi.Bool(false),
			IsPerformanceAdvisorEnabled:       pulumi.Bool(true),
			IsDataExplorerEnabled:             pulumi.Bool(true),
			IsSchemaAdvisorEnabled:            pulumi.Bool(true),
			OrgId:                             pulumi.String("xxx"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
I use the latest version of the provider: v3.5.1
l
Hello @many-telephone-49025, It is ok with this version ; thanks a lot !!!
🙌 1
m
Awesome!