Skip to content

tatsuo48/terraform-provider-sendgrid

Repository files navigation

Terraform Provider Sendgrid

Terraform Registry

supported resources

Current supported only ip_access_management
ip_access_management

data sources

  • sendgrid_whitelist_ip
data "sendgrid_whitelist_ip" "first" {
  id = 1945952
}

resources

  • sendgrid_whitelist_ip
resource "sendgrid_whitelist_ip" "first" {
  ip = "192.168.0.1/32"
}

Development

Test sample configuration

First, build and install the provider.

make install

Then, run the following command to initialize the workspace and apply the sample configuration.

cd examples
terraform init && terraform apply