-
Notifications
You must be signed in to change notification settings - Fork 16.3k
101 Visual Studio Team Services (VSTS) project create #3709
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
Merged
bmoore-msft
merged 10 commits into
Azure:master
from
mathieu-benoit:mathieu-benoit/101-team-services-project-create
Sep 22, 2017
Merged
Changes from 5 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
384cd25
Merge pull request #2 from Azure/master
mathieu-benoit 4d56ab9
Initial commit for Team Services Project create template.
mathieu-benoit 9bd2ea0
Add description about the Team Services accountName.
mathieu-benoit 6034615
Add metadata description for the Team Services account and project pa…
mathieu-benoit b5ded01
Add 2 missing parameters in the parameters file.
mathieu-benoit 195f3a9
Visual Studio Team Service branding.
mathieu-benoit 656407f
Trivial commit to see if the CI is still failing.
mathieu-benoit 6249db8
dateUpdated in metadata.json
mathieu-benoit 81ea747
itemDisplayName - Failed "maxLength" criteria.
mathieu-benoit 00c8d44
Std indent size is 2 instead of 4.
mathieu-benoit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # Deploy a new Team Services (VSTS) account and project. | ||
|
|
||
| <a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fazure%2Fazure-quickstart-templates%2Fmaster%2F101-team-services-project-create%2Fazuredeploy.json" target="_blank"> | ||
| <img src="http://azuredeploy.net/deploybutton.png"/> | ||
| </a> | ||
|
|
||
| This template allows you to deploy a new Team Services (VSTS) account and a new project. | ||
|
|
||
| For more information about Team Services (VSTS), see [What is Visual Studio Team Services?](https://www.visualstudio.com/team-services/). | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| { | ||
| "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", | ||
| "contentVersion": "1.0.0.0", | ||
| "parameters": { | ||
| "accountName": { | ||
| "type": "string", | ||
| "metadata": { | ||
| "description": "The name of the Team Services account, if it doesn't exist it will be created." | ||
| } | ||
| }, | ||
| "projectName": { | ||
| "type": "string", | ||
| "metadata": { | ||
| "description": "The name of the Team Services project." | ||
| } | ||
| }, | ||
| "processTemplateId": { | ||
| "type": "string", | ||
| "defaultValue": "6B724908-EF14-45CF-84F8-768B5384DA45", | ||
| "allowedValues": [ | ||
| "6B724908-EF14-45CF-84F8-768B5384DA45", | ||
| "ADCC42AB-9882-485E-A3ED-7678F01F66BC", | ||
| "27450541-8E31-4150-9947-DC59F998FC01" | ||
| ], | ||
| "metadata": { | ||
| "description": "Scrum: 6B724908-EF14-45CF-84F8-768B5384DA45 / Agile: ADCC42AB-9882-485E-A3ED-7678F01F66BC / CMMI: 27450541-8E31-4150-9947-DC59F998FC01" | ||
| } | ||
| }, | ||
| "versionControlOption": { | ||
| "type": "string", | ||
| "defaultValue": "Git", | ||
| "allowedValues": [ | ||
| "Git", | ||
| "Tfvc" | ||
| ], | ||
| "metadata": { | ||
| "description": "The version control of the Team Services project's source code: Git or Tfvc." | ||
| } | ||
| } | ||
| }, | ||
| "variables": {}, | ||
| "resources": [ | ||
| { | ||
| "name": "[parameters('accountName')]", | ||
| "type": "microsoft.visualstudio/account", | ||
| "location": "[resourceGroup().location]", | ||
| "apiVersion": "2014-04-01-preview", | ||
| "properties": { | ||
| "operationType": "Create", | ||
| "accountName": "[parameters('accountName')]" | ||
| }, | ||
| "resources": [ | ||
| { | ||
| "name": "[parameters('projectName')]", | ||
| "type": "project", | ||
| "location": "[resourceGroup().location]", | ||
| "apiVersion": "2014-04-01-preview", | ||
| "dependsOn": [ | ||
| "[concat('microsoft.visualstudio/account/', parameters('accountName'))]" | ||
| ], | ||
| "properties": { | ||
| "ProcessTemplateId": "[parameters('processTemplateId')]", | ||
| "VersionControlOption": "[parameters('versionControlOption')]" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } |
18 changes: 18 additions & 0 deletions
18
101-team-services-project-create/azuredeploy.parameters.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
| "contentVersion": "1.0.0.0", | ||
| "parameters": { | ||
| "accountName": { | ||
| "value": "GEN-UNIQUE" | ||
| }, | ||
| "projectName": { | ||
| "value": "GEN-UNIQUE" | ||
| }, | ||
| "processTemplateId": { | ||
| "value": "6B724908-EF14-45CF-84F8-768B5384DA45" | ||
| }, | ||
| "versionControlOption": { | ||
| "value": "Git" | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "itemDisplayName": "Deploy a new Team Services (VSTS) account and project", | ||
| "description": "This template allows you to deploy a new Team Services (VSTS) account and a new project.", | ||
| "summary": "Deploy a new Team Services (VSTS) account and project.", | ||
| "githubUsername": "mathieu-benoit", | ||
| "dateUpdated": "2017-07-20" | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
From our brand guidelines, this line should say "This template allows you to deploy a new Visual Studio Team Services (VSTS) account and a new project". We are trying to clean up the inconsistent naming we have everywhere. The new guideline is to first introduce the product as "Visual Studio Team Services (VSTS)" and then use the acronym "VSTS" after that, and not to use the abbreviation "Team Services" at all. There a few instances of that in this PR, but I'm not flagging them all. Thanks for helping us out with this!
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.
Makes sense @lorenpaulsen, thanks for the feedback. I took it into account with my last commit, let me know if you see anything else.