Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard-Barrett committed Oct 28, 2024
1 parent b36ebfe commit 0d14624
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 0d14624

Please sign in to comment.