Skip to content

Commit e87bb07

Browse files
terraform-ibm-modules-opsVipin Kumar
andauthored
chore(deps): update terraform terraform-ibm-modules/cos/ibm to v8.20.2 (#932)
* chore(deps): update terraform terraform-ibm-modules/cos/ibm to v8.20.2 * fixed test case --------- Co-authored-by: Vipin Kumar <[email protected]>
1 parent f4a9d35 commit e87bb07

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

examples/landing_zone/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "resource_group" {
1717
module "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

tests/pr_test.go

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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")

0 commit comments

Comments
 (0)