How about I make a GitHub repo and organise it int...
# getting-started
s
How about I make a GitHub repo and organise it into a sequence of steps?
b
hmm? im not sure I understand.
s
GitHub you understand?
b
I know and use GitHub yes. I'm not sure what you mean by using a repo to organize steps though.
s
So what if I create a sequence of
Stack
classes with each next step trying to add something new
Or what about a sequence of branches. Would that make comparison easier?
Here's where I've got to. https://github.com/rwb196884/pulumi/tree/sequence-03-secrets Having created an SQL Server database and a key vault I'd like to store the connection string for the database in the key vault so that the database can be used. However, the database password is encrypted in the
yml
file and therefore is obtained as type
Output<string>
instead of a
string
which leads to rubbish being stored as the connection string.
If I was setting up a server and a database then I'd create a server login and a database user for my application to use so that it could create tables etc., and it would create a less privileged user for the website to use (e.g., website doesn't need
db_ddladmin
or any server roles