Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
FROM mcr.microsoft.com/dotnet/sdk:5.0-buster-slim AS build-env | |
WORKDIR /app | |
# Agument for PR | |
ARG IS_PR | |
# Argument for the PAT | |
ARG AZDO_PAT | |
# Arguments for setting the Sonarqube Token and the Project Key |
This file contains 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
{ | |
"data": "something" | |
} |
This file contains 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
param ( | |
[Parameter(Mandatory=$true)][string]$personal_access_token, | |
[Parameter(Mandatory=$true)]$pipelines_permissions, | |
[Parameter(Mandatory=$true)][string]$group_descriptor, | |
[Parameter(Mandatory=$true)][string]$project_id, | |
[Parameter(Mandatory=$true)][string]$repository_name) | |
# Set the organization | |
$organization = "cponsn" |
This file contains 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
// To view the default settings, hold "alt" while clicking on the "Settings" button. | |
// For documentation on these settings, see: https://aka.ms/terminal-documentation | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"copyOnSelect": true, | |
"theme":"dark" , | |
"confirmCloseAllTabs": false, | |
"launchMode": "maximized", |
This file contains 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
param ( | |
[Parameter(Mandatory=$true)][string]$gatewayName, | |
[Parameter(Mandatory=$true)][string]$resGroup, | |
[Parameter(Mandatory=$true)][string]$appName, | |
[Parameter(Mandatory=$true)][string]$protocol, | |
[Parameter(Mandatory=$true)][string]$appServiceHostname, | |
[Parameter(Mandatory=$true)][string]$pathRulePath) | |
function GetApplicationGateway($gatewayName, $resGroup) | |
{ |
This file contains 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
param ( | |
[Parameter(Mandatory=$true)][string]$SonarUrl, | |
[Parameter(Mandatory=$true)][string]$ProjectName, | |
[Parameter(Mandatory=$true)][string]$ProjectKey, | |
[Parameter(Mandatory=$true)][string]$QualityProfile, | |
[Parameter(Mandatory=$true)][string]$SSMName) | |
function Get-Credentials{ |
This file contains 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
Parameters: | |
Ec2Name: | |
Description: ec2 name | |
Type: String | |
Ec2AvailZone: | |
Description: availability zone | |
Type: AWS::EC2::AvailabilityZone::Name | |
RdsAvailZone1: | |
Description: availability zone | |
Type: AWS::EC2::AvailabilityZone::Name |
This file contains 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
Parameters: | |
ec2Name: | |
Description: ec2 name | |
Type: String | |
availZone: | |
Description: availability zone | |
Type: AWS::EC2::AvailabilityZone::Name | |
myKeyPair: | |
Description: Amazon EC2 Key Pair | |
Type: "AWS::EC2::KeyPair::KeyName" |
NewerOlder