Skip to content

Commit dc1872b

Browse files
committed
derefrenced postgress logo and referenced pgadmin logo
1 parent ce103bd commit dc1872b

File tree

3 files changed

+138
-3
lines changed

3 files changed

+138
-3
lines changed

.icons/pgadmin.svg

Lines changed: 135 additions & 0 deletions
Loading

registry/AJ0070/modules/pgadmin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
display_name: "pgAdmin"
33
description: "A web-based interface for managing PostgreSQL databases in your Coder workspace."
4-
icon: "../../../../.icons/postgres.svg"
4+
icon: "../../../../.icons/pgadmin.svg"
55
maintainer_github: "AJ0070"
66
verified: false
77
tags: ["database", "postgres", "pgadmin", "web-ide"]

registry/AJ0070/modules/pgadmin/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ resource "coder_app" "pgadmin" {
4343
agent_id = var.agent_id
4444
display_name = "pgAdmin"
4545
slug = "pgadmin"
46-
icon = "/icon/postgres.svg"
46+
icon = "/icon/pgadmin.svg"
4747
url = local.url
4848
subdomain = var.subdomain
4949
share = "owner"
@@ -58,7 +58,7 @@ resource "coder_app" "pgadmin" {
5858
resource "coder_script" "pgadmin" {
5959
agent_id = var.agent_id
6060
display_name = "Install and run pgAdmin"
61-
icon = "/icon/postgres.svg"
61+
icon = "/icon/pgadmin.svg"
6262
run_on_start = true
6363
script = templatefile("${path.module}/run.sh", {
6464
PORT = var.port,

0 commit comments

Comments
 (0)