ca
Cloud Armor
NetworkingGCP
General
General information about the service.
Description
Google Cloud Armor provides DDoS protection and WAF for applications and services hosted on Google Cloud.
Service ID
compute.googleapis.comResource Pattern
projects/{project}/global/securityPolicies/{policy}References
Chat
Powered by AITalk to this service to learn more about it.
Suggested questions:
Naming
The conventions, rules, and restrictions for naming this service.
Naming Convention
ca-{workload}-{environment}Length
1-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
project
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_compute_security_policy" "main" {2 name = "ca-${var.environment}"34 rule {5 action = "deny(403)"6 priority = "2147483647"7 match {8 versioned_expr = "SRC_IPS_V1"9 config {10 src_ip_ranges = ["*"]11 }12 }13 }14}
Utilities
Utilities to support app deployment or configuration.