diff --git a/README.md b/README.md index 54adb2d..bfb8e4b 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ An Example of a CICD Integration using Codefresh and BitBucket with this module ```hcl module "snowflake_network_rule" { - source = "git::https://github.com/Richard-Barrett/terraform-snowflake-network-rule.git?ref=0.1.0" + source = "git::https://github.com/Richard-Barrett/terraform-snowflake-network-rule.git?ref=0.2.0" network_rule_name = "example_rule" diff --git a/outputs.tf b/outputs.tf index f12887e..147ed53 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,14 +1,14 @@ output "network_rule_id" { description = "The ID of the network rule." - value = azurerm_network_rule.example.id + value = snowflake_network_rule.this.id } output "network_rule_name" { description = "The name of the network rule." - value = azurerm_network_rule.example.name + value = snowflake_network_rule.this.name } output "network_rule_type" { description = "The type of the network rule." - value = azurerm_network_rule.example.type + value = snowflake_network_rule.this.type }