Skip to content

Commit

Permalink
Update operator.mdx to operator.md (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
mclacore authored Sep 27, 2024
1 parent 3ad2c01 commit 5230722
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ GCP HTTPS Cloud Function

## Design

For detailed information, check out our [Operator Guide](operator.mdx) for this bundle.
For detailed information, check out our [Operator Guide](operator.md) for this bundle.

## Usage

Expand Down
85 changes: 85 additions & 0 deletions src/_massdriver_variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
// Auto-generated variable declarations from massdriver.yaml
variable "cloud_dns_managed_zone" {
type = object({
name = string
})
}
variable "cloud_function_configuration" {
type = object({
entrypoint = string
maximum_instances = number
memory_mb = number
minimum_instances = number
runtime = string
})
}
variable "gcp_authentication" {
type = object({
data = object({
auth_provider_x509_cert_url = string
auth_uri = string
client_email = string
client_id = string
client_x509_cert_url = string
private_key = string
private_key_id = string
project_id = string
token_uri = string
type = string
})
specs = object({
gcp = optional(object({
project = optional(string)
region = optional(string)
}))
})
})
}
variable "md_metadata" {
type = object({
default_tags = object({
managed-by = string
md-manifest = string
md-package = string
md-project = string
md-target = string
})
deployment = object({
id = string
})
name_prefix = string
observability = object({
alarm_webhook_url = string
})
package = object({
created_at = string
deployment_enqueued_at = string
previous_status = string
updated_at = string
})
target = object({
contact_email = string
})
})
}
variable "subdomain" {
type = string
}
variable "subnetwork" {
type = object({
data = object({
infrastructure = object({
cidr = string
gcp_global_network_grn = string
grn = string
vpc_access_connector = string
})
})
specs = object({
gcp = optional(object({
project = optional(string)
region = optional(string)
}))
})
})
}

0 comments on commit 5230722

Please sign in to comment.