Difference between revisions of "Terraform resource: null resource"

From wikieduonline
Jump to navigation Jump to search
(Created page with " resource "null_resource" "tags_as_list_of_maps" { {{tf resources}}")
 
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
 +
 +
    # An example resource that does nothing.
 +
    resource "null_resource" "example" {
 +
      triggers = {
 +
        value = "A example resource that does nothing!"
 +
      }
 +
    }
 +
 +
 +
 
  [[resource]] "null_resource" "tags_as_list_of_maps" {
 
  [[resource]] "null_resource" "tags_as_list_of_maps" {
  
  
  
 +
* [[terraform_data]] is a new builtin managed resource type, which can replace the use of null_resource, and can store data of any type [GH-31757]
 +
 +
== See also ==
 +
* {{tf resources}}
  
{{tf resources}}
+
[[Category:Terraform]]

Latest revision as of 19:36, 7 February 2024


    # An example resource that does nothing.
    resource "null_resource" "example" {
      triggers = {
        value = "A example resource that does nothing!"
      }
    }


resource "null_resource" "tags_as_list_of_maps" {


  • terraform_data is a new builtin managed resource type, which can replace the use of null_resource, and can store data of any type [GH-31757]

See also[edit]

Advertising: