Hi, could you tell me how to create connection (aw...
# general
p
Hi, could you tell me how to create connection (aws.glue.Connection) from marketplace for Apache Iceberg Connector for Glue 3.0 (link). I try (documentation)
Copy code
new aws.glue.Connection("iceberg", { connectionType: "MARKETPLACE", name: "Apache Iceberg Connector for Glue 3.0" })
but it doesn't work... Thanks in advance for any help.
I've found solution
Copy code
const iceberg = new aws.glue.Connection("spark-iceberg", {
            connectionProperties: pulumi.secret({
                CONNECTOR_CLASS_NAME: "iceberg",
                CONNECTOR_TYPE: "Spark",
                CONNECTOR_URL: "<https://709825985650.dkr.ecr.us-east-1.amazonaws.com/amazon-web-services/glue/iceberg:0.14.0-glue3.0-2>",
            }),
            connectionType: "MARKETPLACE",
            description: "Connect Iceberg sources",
            matchCriterias: [
                "Connection",
                "template-connection",
            ],
            name: "Apache Iceberg Connector for Glue 3.0",
        }, {})