-
Notifications
You must be signed in to change notification settings - Fork 876
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ABS bot sample #464
ABS bot sample #464
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks great! I'll try it out tomorrow. I left some comments here and there. Thanks a lot for contributing!
All good feedback, let me action. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great, I was able to deploy the bot! Left a couple comments, LGTM otherwise. Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had one final question and then I'm ready to merge
azure-cs-botservice/Program.cs
Outdated
{ | ||
ApplicationInsightsId = appInsights.Id, | ||
ReadPermissions = "api", | ||
}); | ||
|
||
var luis = new Pulumi.Azure.Cognitive.Account("cs", new Pulumi.Azure.Cognitive.AccountArgs | ||
var luis = new Account("cs", new AccountArgs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also qualify this Account
with a namespace? (Cognitive.Account
)
Thanks for contributing, @daltskin! Great work! |
* ABS bot sample * clean up code * Address comments * Add the sample bot source code, so others can easily modify * Bring in some namespaces - highlight which folders to run CLI from * Parenthesis not required. * use Cognitive alias
Address #463