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
# azuredevops_project_features.feature["408a6076-3804-48db-b6a5-9dd82ef6a2b6"] must be replaced | |
-/+ resource "azuredevops_project_features" "feature" { | |
~ features = { | |
+ "artifacts" = "enabled" | |
+ "boards" = "enabled" | |
+ "pipelines" = "enabled" | |
+ "repositories" = "enabled" | |
+ "testplans" = "enabled" | |
} | |
~ id = "Configure.FirstTest" -> (known after apply) |
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
namespace FunctionApp1 | |
{ | |
using Autofac; | |
using Autofac.Core; | |
using EnsureThat; | |
using Microsoft.Azure.WebJobs; | |
using Microsoft.Azure.WebJobs.Description; | |
using Microsoft.Azure.WebJobs.Host; | |
using Microsoft.Azure.WebJobs.Host.Config; |
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
var express = require('express'); | |
var helmet = require('helmet'); | |
var compression = require('compression'); | |
var serveStatic = require('serve-static'); | |
var https = require('https'); | |
var pem = require('pem'); | |
var forceSSL = require('express-force-ssl'); | |
var app = express(); |