diff --git a/docs/src/main/asciidoc/amazon-lambda.adoc b/docs/src/main/asciidoc/amazon-lambda.adoc
index 5439be4a646a6..bdbcfaf8b25af 100644
--- a/docs/src/main/asciidoc/amazon-lambda.adoc
+++ b/docs/src/main/asciidoc/amazon-lambda.adoc
@@ -635,15 +635,17 @@ jar tvf target/function.zip
== Amazon Alexa Integration
-To use Alexa with Quarkus native, please add the following extension.
+To use Alexa with Quarkus native, you need to use the https://github.com/quarkiverse/quarkus-amazon-alexa[Quarkus Amazon Alexa extension hosted at the Quarkiverse Hub].
[source,xml]
----
-
- io.quarkus
- quarkus-amazon-alexa
-
+
+ io.quarkiverse.alexa
+ quarkus-amazon-alexa
+ ${quarkus-amazon-alexa.version} <1>
+
----
+<1> Define the latest version of the extension in your POM file.
Create your Alexa handler, as normal, by sub-classing the abstract `com.amazon.ask.SkillStreamHandler`, and add your request handler implementation.