Giter Club home page Giter Club logo

Comments (4)

Bpoe avatar Bpoe commented on July 28, 2024

Docs for variables in ARM templates:
https://learn.microsoft.com/en-us/azure/azure-resource-manager/templates/variables

Variables should not pass to a nested config (group). If the nested config needs these, it should define parameters and the variables can be passes as params.

from dsc.

mgreenegit avatar mgreenegit commented on July 28, 2024

Totally agree, if the group resource is in a seperate file. Does ARM have a solution for nesting within the same JSON/Bicep template, to consider parity? I can't think of a workable example.

A big issue with this in the past has been whether variables should be expanded at compilation or run time. Most people seemed to be confused when they expanded at compilation time. (it's also why DSC extension compiles on the target, which is not ideal)

For machine config integration, is there an Azure service that could host variables, similar to how ADO centrally stores variables for use in build scripts? Azure Configuration, maybe? I tested it a while back and the data plane operations where pretty much raw REST calls...

from dsc.

Bpoe avatar Bpoe commented on July 28, 2024

In ARM template deployments, each template is a separate deployment. A nested template, whether its in its own file or inline, is a separate deployment that does not share any state with any other deployments. Variables are only used in that deployment and are not shared anywhere else. Think of it like a C# method. Any variable that is declared inside a method is scoped to that method only. If that method (M1) makes a call to another method (M2), M2 cannot see the variables in M1. You would need to pass the values in via parameters to M2.

from dsc.

mgreenegit avatar mgreenegit commented on July 28, 2024

Here is an example to consider
https://github.com/Azure/azure-quickstart-templates/blob/3d8a68489ff6d8f0420183501a9c16d38bc45cdd/demos/vmss-win-iis-app-ssl/dsc/serviceDSCVMSS.ps1#L143

from dsc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.