Skip to content

Commit bfc2d2d

Browse files
committed
add plugin config
1 parent 7c89294 commit bfc2d2d

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.claude-plugin/plugin.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "cloud-sql-postgresql",
3+
"version": "0.1.0",
4+
"description": "Create, connect, and interact with a Cloud SQL for PostgreSQL database and data.",
5+
"repository": "https://github.com/gemini-cli-extensions/cloud-sql-postgresql",
6+
"skills": "./skills/",
7+
"userConfig": {
8+
"cloud_sql_postgres_project": {
9+
"description": "ID of the Google Cloud project",
10+
"sensitive": false
11+
},
12+
"cloud_sql_postgres_region": {
13+
"description": "Region of the Cloud SQL instance",
14+
"sensitive": false
15+
},
16+
"cloud_sql_postgres_instance": {
17+
"description": "Name of the Cloud SQL instance",
18+
"sensitive": false
19+
},
20+
"cloud_sql_postgres_database": {
21+
"description": "Name of the database",
22+
"sensitive": false
23+
},
24+
"cloud_sql_postgres_user": {
25+
"description": "(Optional) Username of the database user (Default: IAM user)",
26+
"sensitive": false
27+
},
28+
"cloud_sql_postgres_password": {
29+
"description": "(Optional) Password of the database user (Default: IAM user)",
30+
"sensitive": true
31+
},
32+
"cloud_sql_postgres_ip_type": {
33+
"description": "(Optional) Type of the IP address: PUBLIC, PRIVATE, or PSC (Default: Public)",
34+
"sensitive": false
35+
}
36+
}
37+
}

0 commit comments

Comments
 (0)