diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 7185cc8d..3da9ecda 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -32,7 +32,7 @@ jobs:
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Install poetry
- run: pipx install poetry==2.1.1
+ run: curl -sSL https://install.python-poetry.org | python3 - --version 2.2.1
- name: Run all tests
run: |
poetry install
diff --git a/diagrams/__init__.py b/diagrams/__init__.py
index a4b095e6..c3acacfc 100644
--- a/diagrams/__init__.py
+++ b/diagrams/__init__.py
@@ -92,7 +92,7 @@ class Diagram:
# imagepos attribute is not backward compatible
# TODO: check graphviz version to see if "imagepos" is available >= 2.40
# https://github.com/xflr6/graphviz/blob/master/graphviz/backend.py#L248
- # "imagepos": "tc",
+ "imagepos": "tc",
"imagescale": "true",
"fontname": "Sans-Serif",
"fontsize": "13",
diff --git a/diagrams/aws/network.py b/diagrams/aws/network.py
index 4f072756..fe8d946e 100644
--- a/diagrams/aws/network.py
+++ b/diagrams/aws/network.py
@@ -128,6 +128,10 @@ class TransitGateway(_Network):
_icon = "transit-gateway.png"
+class VerifiedAccess(_Network):
+ _icon = "verified-access.png"
+
+
class VPCCustomerGateway(_Network):
_icon = "vpc-customer-gateway.png"
diff --git a/docs/nodes/aws.md b/docs/nodes/aws.md
index a0ed5f68..dc84bb1a 100644
--- a/docs/nodes/aws.md
+++ b/docs/nodes/aws.md
@@ -1346,6 +1346,9 @@ Node classes list of the aws provider.
**diagrams.aws.network.TransitGateway**, **TGW** (alias)
+
+**diagrams.aws.network.VerifiedAccess**
+
**diagrams.aws.network.VPCCustomerGateway**
diff --git a/resources/aws/network/verified-access.png b/resources/aws/network/verified-access.png
new file mode 100644
index 00000000..856c2d34
Binary files /dev/null and b/resources/aws/network/verified-access.png differ
diff --git a/website/static/img/resources/aws/network/verified-access.png b/website/static/img/resources/aws/network/verified-access.png
new file mode 100644
index 00000000..856c2d34
Binary files /dev/null and b/website/static/img/resources/aws/network/verified-access.png differ