Skip to content

Commit

Permalink
chore: fix descriptions on terraform module vars (#663)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyecusch authored Aug 13, 2024
1 parent 619a7d0 commit 2ed1381
Show file tree
Hide file tree
Showing 23 changed files with 9 additions and 12 deletions.
4 changes: 2 additions & 2 deletions cloud/aws/deploytf/.nitric/modules/http_proxy/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "name" {
description = "The name of the API Gateway"
description = "The name of the HTTP proxy gateway"
type = string
}

Expand All @@ -9,6 +9,6 @@ variable "stack_id" {
}

variable "target_lambda_function" {
description = "The name or arn of the target lambda functin"
description = "The name or arn of the lambda function being proxied"
type = string
}
2 changes: 1 addition & 1 deletion cloud/aws/deploytf/.nitric/modules/topic/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "topic_name" {
description = "The name of the bucket. This must be globally unique."
description = "The name of the topic."
type = string
}

Expand Down
Binary file modified cloud/aws/deploytf/generated/api/jsii/api-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/bucket/jsii/bucket-0.0.0.tgz
Binary file not shown.
4 changes: 2 additions & 2 deletions cloud/aws/deploytf/generated/http_proxy/HttpProxyConfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ type HttpProxyConfig struct {
Providers *[]interface{} `field:"optional" json:"providers" yaml:"providers"`
// Experimental.
SkipAssetCreationFromLocalModules *bool `field:"optional" json:"skipAssetCreationFromLocalModules" yaml:"skipAssetCreationFromLocalModules"`
// The name of the API Gateway.
// The name of the HTTP proxy gateway.
Name *string `field:"required" json:"name" yaml:"name"`
// The ID of the stack.
StackId *string `field:"required" json:"stackId" yaml:"stackId"`
// The name or arn of the target lambda functin.
// The name or arn of the lambda function being proxied.
TargetLambdaFunction *string `field:"required" json:"targetLambdaFunction" yaml:"targetLambdaFunction"`
}

Binary file modified cloud/aws/deploytf/generated/http_proxy/jsii/http_proxy-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/keyvalue/jsii/keyvalue-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/policy/jsii/policy-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/queue/jsii/queue-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/rds/jsii/rds-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/schedule/jsii/schedule-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/secret/jsii/secret-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/service/jsii/service-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/sql/jsii/sql-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/stack/jsii/stack-0.0.0.tgz
Binary file not shown.
4 changes: 1 addition & 3 deletions cloud/aws/deploytf/generated/topic/TopicConfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ type TopicConfig struct {
LambdaSubscribers *map[string]*string `field:"required" json:"lambdaSubscribers" yaml:"lambdaSubscribers"`
// The ID of the Nitric stack.
StackId *string `field:"required" json:"stackId" yaml:"stackId"`
// The name of the bucket.
//
// This must be globally unique.
// The name of the topic.
TopicName *string `field:"required" json:"topicName" yaml:"topicName"`
}

Binary file modified cloud/aws/deploytf/generated/topic/jsii/topic-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/vpc/jsii/vpc-0.0.0.tgz
Binary file not shown.
Binary file modified cloud/aws/deploytf/generated/websocket/jsii/websocket-0.0.0.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion cloud/gcp/deploytf/.nitric/modules/bucket/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "bucket_name" {
description = "The name of the bucket. This must be globally unique."
description = "The name of the bucket"
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion cloud/gcp/deploytf/.nitric/modules/http_proxy/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "name" {
description = "The name of the API Gateway"
description = "The name of the HTTP proxy gateway"
type = string
}

Expand Down
1 change: 0 additions & 1 deletion cloud/gcp/deploytf/.nitric/modules/topic/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# TODO: confirm outputs
output "topic_name" {
description = "The name of the topic."
value = google_pubsub_topic.topic.name
Expand Down
2 changes: 1 addition & 1 deletion cloud/gcp/deploytf/.nitric/modules/topic/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "topic_name" {
description = "The name of the bucket. This must be globally unique."
description = "The name of the topic"
type = string
}

Expand Down

0 comments on commit 2ed1381

Please sign in to comment.