@@ -515,3 +515,118 @@ output "root" {
515
515
t .Fatalf ("wrong error:\n got: %s\n want: message containing %q" , got , want )
516
516
}
517
517
}
518
+
519
+ func TestContext2Plan_planDataSourceSensitiveNested (t * testing.T ) {
520
+ m := testModuleInline (t , map [string ]string {
521
+ "main.tf" : `
522
+ resource "test_instance" "bar" {
523
+ }
524
+
525
+ data "test_data_source" "foo" {
526
+ foo {
527
+ bar = test_instance.bar.sensitive
528
+ }
529
+ }
530
+ ` ,
531
+ })
532
+
533
+ p := new (MockProvider )
534
+ p .PlanResourceChangeFn = func (req providers.PlanResourceChangeRequest ) (resp providers.PlanResourceChangeResponse ) {
535
+ resp .PlannedState = cty .ObjectVal (map [string ]cty.Value {
536
+ "sensitive" : cty .UnknownVal (cty .String ),
537
+ })
538
+ return resp
539
+ }
540
+ p .GetProviderSchemaResponse = getProviderSchemaResponseFromProviderSchema (& ProviderSchema {
541
+ ResourceTypes : map [string ]* configschema.Block {
542
+ "test_instance" : {
543
+ Attributes : map [string ]* configschema.Attribute {
544
+ "sensitive" : {
545
+ Type : cty .String ,
546
+ Computed : true ,
547
+ Sensitive : true ,
548
+ },
549
+ },
550
+ },
551
+ },
552
+ DataSources : map [string ]* configschema.Block {
553
+ "test_data_source" : {
554
+ Attributes : map [string ]* configschema.Attribute {
555
+ "id" : {
556
+ Type : cty .String ,
557
+ Computed : true ,
558
+ },
559
+ },
560
+ BlockTypes : map [string ]* configschema.NestedBlock {
561
+ "foo" : {
562
+ Block : configschema.Block {
563
+ Attributes : map [string ]* configschema.Attribute {
564
+ "bar" : {Type : cty .String , Optional : true },
565
+ },
566
+ },
567
+ Nesting : configschema .NestingSet ,
568
+ },
569
+ },
570
+ },
571
+ },
572
+ })
573
+
574
+ state := states .NewState ()
575
+ root := state .EnsureModule (addrs .RootModuleInstance )
576
+ root .SetResourceInstanceCurrent (
577
+ mustResourceInstanceAddr ("data.test_data_source.foo" ).Resource ,
578
+ & states.ResourceInstanceObjectSrc {
579
+ Status : states .ObjectReady ,
580
+ AttrsJSON : []byte (`{"string":"data_id", "foo":[{"bar":"old"}]}` ),
581
+ AttrSensitivePaths : []cty.PathValueMarks {
582
+ {
583
+ Path : cty .GetAttrPath ("foo" ),
584
+ Marks : cty .NewValueMarks ("sensitive" ),
585
+ },
586
+ },
587
+ },
588
+ mustProviderConfig (`provider["registry.terraform.io/hashicorp/test"]` ),
589
+ )
590
+ root .SetResourceInstanceCurrent (
591
+ mustResourceInstanceAddr ("test_instance.bar" ).Resource ,
592
+ & states.ResourceInstanceObjectSrc {
593
+ Status : states .ObjectReady ,
594
+ AttrsJSON : []byte (`{"sensitive":"old"}` ),
595
+ AttrSensitivePaths : []cty.PathValueMarks {
596
+ {
597
+ Path : cty .GetAttrPath ("sensitive" ),
598
+ Marks : cty .NewValueMarks ("sensitive" ),
599
+ },
600
+ },
601
+ },
602
+ mustProviderConfig (`provider["registry.terraform.io/hashicorp/test"]` ),
603
+ )
604
+
605
+ ctx := testContext2 (t , & ContextOpts {
606
+ Config : m ,
607
+ Providers : map [addrs.Provider ]providers.Factory {
608
+ addrs .NewDefaultProvider ("test" ): testProviderFuncFixed (p ),
609
+ },
610
+ State : state ,
611
+ })
612
+
613
+ plan , diags := ctx .Plan ()
614
+ if diags .HasErrors () {
615
+ t .Fatal (diags .ErrWithWarnings ())
616
+ }
617
+
618
+ for _ , res := range plan .Changes .Resources {
619
+ switch res .Addr .String () {
620
+ case "test_instance.bar" :
621
+ if res .Action != plans .Update {
622
+ t .Fatalf ("unexpected %s change for %s" , res .Action , res .Addr )
623
+ }
624
+ case "data.test_data_source.foo" :
625
+ if res .Action != plans .Read {
626
+ t .Fatalf ("unexpected %s change for %s" , res .Action , res .Addr )
627
+ }
628
+ default :
629
+ t .Fatalf ("unexpected %s change for %s" , res .Action , res .Addr )
630
+ }
631
+ }
632
+ }
0 commit comments