Git Product home page Git Product logo

Comments (2)

apparentlymart avatar apparentlymart commented on July 29, 2024 4

Hi @steeve85,

cty values are, by design, always immutable. Instead of modifying an existing object, you must construct a new object.

If the change you want to make is shallow (that is, it only involves changes to the top-level map or object) then AsValueMap can be part of the solution, but you then need to pass the modified map back to cty.MapVal or cty.ObjectVal (depending on whether you intend to create a map-typed or object-typed value) to construct the new value:

foo1 := cty.ObjectVal(map[string]cty.Value{
  "example1": cty.StringVal("a"),
})
fooMap := foo1.AsValueMap()
fooMap["example2"] = cty.StringVal("b")
foo2 := cty.ObjectVal(fooMap)

If you want to make a change deep inside the structure then things can get more involved: you'll need to reconstruct each level you want to modify one at a time.

cty is designed to be used as part of implementing languages that use a functional programming style with no mutation, so there are no functions for modifying values in-place. In practice applications that use values resulting from such a language, such as Terraform providers consuming the result of evaluating a Terraform configuration, do it by converting from cty.Value to some suitable application-specific data type -- which, in the case of Terraform providers, is mutable -- and then convert that data type back into an entirely new cty.Value to return, so the cty representation is used only for transport to and from the language runtime and not for internal processing.

from go-cty.

steeve85 avatar steeve85 commented on July 29, 2024

@apparentlymart Great, totally make sense. Thank you for the help!

from go-cty.

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.