File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 93
93
"value" : " ${OPENAICOM_KEY}"
94
94
},
95
95
"neonServerlessPostgresHost" : {
96
- "value" : " ${POSTGRES_HOST}"
96
+ "value" : " ${POSTGRES_HOST=neon-host }"
97
97
},
98
98
"neonServerlessPostgresUserName" : {
99
- "value" : " ${POSTGRES_USERNAME}"
99
+ "value" : " ${POSTGRES_USERNAME=neondb_owner }"
100
100
},
101
101
"neonServerlessPostgresPassword" : {
102
- "value" : " ${POSTGRES_PASSWORD}"
102
+ "value" : " ${POSTGRES_PASSWORD=neondb_password }"
103
103
},
104
104
"neonServerlessPostgresDatabase" : {
105
- "value" : " ${POSTGRES_DATABASE}"
105
+ "value" : " ${POSTGRES_DATABASE=neondb }"
106
106
}
107
107
}
108
108
}
Original file line number Diff line number Diff line change @@ -76,9 +76,9 @@ async def common_parameters():
76
76
)
77
77
78
78
79
- async def get_azure_credential () -> (
80
- Union [ azure .identity .AzureDeveloperCliCredential , azure .identity .ManagedIdentityCredential ]
81
- ) :
79
+ async def get_azure_credential () -> Union [
80
+ azure .identity .AzureDeveloperCliCredential , azure .identity .ManagedIdentityCredential
81
+ ] :
82
82
azure_credential : Union [azure .identity .AzureDeveloperCliCredential , azure .identity .ManagedIdentityCredential ]
83
83
try :
84
84
if client_id := os .getenv ("APP_IDENTITY_ID" ):
You can’t perform that action at this time.
0 commit comments