File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ module "resource_group" {
1717module "cos_bucket" {
1818 count = var. enable_vpc_flow_logs ? 1 : 0
1919 source = " terraform-ibm-modules/cos/ibm"
20- version = " 8.20.1 "
20+ version = " 8.20.2 "
2121 resource_group_id = module. resource_group . resource_group_id
2222 region = var. region
2323 cross_region_location = null
Original file line number Diff line number Diff line change @@ -193,11 +193,10 @@ func TestRunVpcWithDnsExample(t *testing.T) {
193193 ResourceGroup : resourceGroup ,
194194 Region : "us-south" ,
195195 })
196- options .TerraformVars = map [string ]interface {}{
197- "dns_records" : dnsRecordsMap ,
198- "name" : "test-dns" ,
199- "dns_zone_name" : "slz.com" ,
200- }
196+
197+ options .TerraformVars ["dns_records" ] = dnsRecordsMap
198+ options .TerraformVars ["name" ] = "test-dns"
199+ options .TerraformVars ["dns_zone_name" ] = "slz.com"
201200 output , err := options .RunTestConsistency ()
202201 assert .Nil (t , err , "This should not have errored" )
203202 assert .NotNil (t , output , "Expected some output" )
You can’t perform that action at this time.
0 commit comments