Quantcast
Channel: User Giulio Vian - Stack Overflow
Browsing all 38 articles
Browse latest View live

Answer by Giulio Vian for Pass output (database password) from Terraform to...

One solution is to generate the Kubernetes yaml from a template.The pattern uses templatefile function in Terraform 0.12 or the template provider earlier versions to read and local_file resource to...

View Article


Answer by Giulio Vian for How to give permissions to AKS to access ACR via...

This code worked for me.resource "azuread_application""aks_sp" { name = "sp-aks-${local.cluster_name}"}resource "azuread_service_principal""aks_sp" { application_id =...

View Article


How to automate SSRS configuration

This is my scenario: I have to setup a number of TFS 2013 Application Tier nodes (at least 6) and I am trying to automate the process, the nodes hosts also SQL Server Reporting Services 2012 SP1 in...

View Article

Answer by Giulio Vian for Should I check-in my node_modules folder to my code...

In general, you should not add the node_modules to your version control.If you have an artifact repository (TFS/AzDO offers this feature as Package Management since 2017), you should use that to store...

View Article

Answer by Giulio Vian for Deploy azure resource in prebuilt resource group...

Use the azurerm_resource_group data source.data "azurerm_resource_group" "demo" { name = "demoterraform"}in the rest of the code you can refer to it with a similar expression...

View Article


Answer by Giulio Vian for How to build mono repo across languages or cross...

Say your monorepo is organised this way:/ README.md ... aCppPrj/ README.md build/ doc/ src/ ... aJavaPrj/ ... aNodePrj/ ... common/In this example the common directory has some scripts shared by all...

View Article

Image may be NSFW.
Clik here to view.

Answer by Giulio Vian for Fetching multiple TFS git repo sources with git...

You must select the option to download submodules.In YAML you must add an explicit checkout stepsteps:- checkout: self submodules: true

View Article

Answer by Giulio Vian for Github actions / Run job after matrix is done

I did that: you must add a needs clause in the following job, e.g.jobs: shake: ... post_shake: needs: [shake] steps: ...

View Article


Answer by Giulio Vian for How to build a docker image with RSA key as build...

You should quote the variable, i.e. --build-arg user_private_rsa="$USER_PRIVATE_RSA" otherwise docker is picking anything after the first whitespace as an option for itself.

View Article


Answer by Giulio Vian for How can I use terraform to setup in multi regions?

Yes, it is the expected behaviour because the resources have now different Terraform identifiers. When Terraform runs plan or apply, it looks in the status file and cannot find the new identifiers...

View Article

Answer by Giulio Vian for Stack Rank numbers suddenly messed up in TFS 2013

Ewald explains everything in this post Behind the scenes: the Backlog Priority or Stack Rank fieldAfter we shipped the change, we have received multiple reports fromcustomers who were confused with the...

View Article

Answer by Giulio Vian for Azure DevOps Template not working (Unexpected values)

Trigger can be defined only at the pipeline level, you cannot set it at the stage level. The stage can only have these children (see YAML schema reference):stages:- stage: string # name of the stage...

View Article

Answer by Giulio Vian for How can I use multible terraform tf files in one...

Move this declaration in its own file instead of duplicatingprovider "aws" { region = "eu-west-2"}Terraform doesn't care if you use one or 100 files for the code, but definitions must be unique.

View Article


Answer by Giulio Vian for How to save the azure keyvault certificate to a...

You may use the azurerm_key_vault_certificate_data data source.Example from the docsdata "azurerm_key_vault" "example" { name = "examplekv" resource_group_name = "some-resource-group"}data...

View Article

Answer by Giulio Vian for Detect TFS Build vs. Visual Studio build

You do not need to edit the CSProj file: just use CMD.EXE syntax in Visual Studio Post-Build eventsYou can test if running inside Visual StudioIF "$(BuildingInsideVisualStudio)"=="true" (…)or inside...

View Article


Is Selenium Grid 4 compatible with v3 clients?

Before I spent hours in setting up a Selenium v4 Grid, can someone confirm it is backward compatibility with existing clients?I was not able to find anything in official documentation, nor in my...

View Article

How to rebuild the packed-refs file

ContextI am writing a script to mirror and periodically refresh some repositories from GitHub. GitHub repos have reference to Pull request branches that have no meaning outside, so I am filtering them...

View Article


Answer by Giulio Vian for TF30046 Error after restoring TFS database to new...

You incorrectly configured TFS (in fact it created a default collection). If you read Move Team Foundation Server from one hardware configuration to another carefully, you have to run the Application...

View Article
Browsing all 38 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>