import pulumi import pulumi_aws as aws from autotag.autotag import register_auto_tags config = pulumi.Config("langfuse") project_name = config.require("project_name") stack_name = pulumi.get_stack() environment = config.require("environment") account_id = config.require("account_id") tags = config.require_object("tags") network = config.require_object("network") ec2_config = config.require_object("ec2") langfuse_config = config.require_object("langfuse_config") aws_region = aws.get_region().id current = aws.get_caller_identity() register_auto_tags(tags)