Skip to content

Commit

Permalink
docs(routeros_snmp_community): Addresses Doesn't Accept Multiple Addr…
Browse files Browse the repository at this point in the history
…esses

#495
  • Loading branch information
vaerh committed Jun 27, 2024
1 parent 3b66b9a commit e762093
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions examples/resources/routeros_snmp_community/resource.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
resource "routeros_snmp_community" "test" {
authentication_password = "authpasswd"
authentication_protocol = "MD5"
comment = "Comment"
disabled = true
encryption_password = "encpassword"
encryption_protocol = "DES"
name = "private"
read_access = true
security = "private"
write_access = true
authentication_password = "authpasswd"
authentication_protocol = "MD5"
comment = "Comment"
disabled = true
encryption_password = "encpassword"
encryption_protocol = "DES"
name = "private"
read_access = true
security = "private"
write_access = true
}

resource "routeros_snmp_community" "mything" {
addresses = ["10.0.1.12", "10.10.0.129"]
name = "mything"
}

0 comments on commit e762093

Please sign in to comment.