
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
github.com/hashicorp/go-terraform-address
This package provides utilities for properly parsing Terraform addresses.
The parser is implemented using pigeon, a PEG implementation.
Resource addresses are described by the Terraform documentation.
Identifiers are described in the Terraform Configuration Syntax document
If you change the peg, please regenerate the go code with:
go get -u github.com/mna/pigeon
go generate .
You may need to clean up the go.mod with:
go mod tidy
package main
import (
"fmt"
address "github.com/hashicorp/go-terraform-address"
)
func main() {
a, err := address.NewAddress(`module.first.module.second["xyz"].resource.name[2]`)
if err != nil {
panic(err)
}
fmt.Println(len(a.ModulePath)) // 2
fmt.Println(a.ModulePath[0].Name) // "first"
fmt.Println(a.ModulePath[1].Index.String()) // "xyz"
fmt.Printf("%T\n", a.ModulePath[1].Index.Value) // string
fmt.Println(a.ResourceSpec.Type) // "resource"
fmt.Println(a.ResourceSpec.Name) // "name"
fmt.Printf("%T\n", a.ResourceSpec.Index.Value) // int
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.