``` eb_application = aws.elasticbeanstalk.Appl...
# general
a
Copy code
eb_application = aws.elasticbeanstalk.Application("django-app", description = "A Django test application")


    # Create Elastic Beanstalk environment
    eb_environment = aws.elasticbeanstalk.Environment("dev-env",
        application=eb_application.name,
        solution_stack_name="64bit Amazon Linux 2 v3.2.1 running ECS",
        settings=[
            aws.elasticbeanstalk.EnvironmentSettingArgs(
                namespace="aws:elasticbeanstalk:environment",
                name="EnvironmentType",
                value="SingleInstance",
            ),
            aws.elasticbeanstalk.EnvironmentSettingArgs(
                namespace="aws:autoscaling:launchconfiguration",
                name="InstanceType",
                value="t2.micro"
            ),
             aws.elasticbeanstalk.EnvironmentSettingArgs(
            namespace="aws:autoscaling:asg",
            name="MinSize",
            value="1",
        ),
            aws.elasticbeanstalk.EnvironmentSettingArgs(
                namespace="aws:autoscaling:asg",
                name="MaxSize",
                value="4",
        ),
            
            aws.elasticbeanstalk.EnvironmentSettingArgs(
            namespace="aws:autoscaling:launchconfiguration",
            name="IamInstanceProfile",
            value="arn:aws:iam::005671143539:instance-profile/eb-ec2-role"
        ),
        aws.elasticbeanstalk.EnvironmentSettingArgs(
            namespace="aws:ec2:vpc",
            name="VPCId",
            value=default_vpc.id,
        ),
        aws.elasticbeanstalk.EnvironmentSettingArgs(
            namespace="aws:ec2:vpc",
            name="Subnets",
            value=subnet_ids,
        ),
        aws.elasticbeanstalk.EnvironmentSettingArgs(
            namespace="aws:elasticbeanstalk:environment",
            name="EnvironmentType",
            value="LoadBalanced"
        ),
        aws.elasticbeanstalk.EnvironmentSettingArgs(
            namespace="aws:elasticbeanstalk:application:environment",
            name="CONNECTION_STRING",
            value=conn,
        ),       
        ]
    )

    pulumi.export("application_url", eb_environment.endpoint_url)
    pulumi.export("envId", eb_environment.id)
    pulumi.export("appName", eb_application.name)
f
Hi @adventurous-ice-46566 ! Can you try running
pulumi up --logtostderr -v=9
? There may be more details in there that could help with further troubleshooting.