-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: initial implementation of module functional #1
Conversation
README.md
Outdated
context = module.label.context | ||
} | ||
|
||
module "vpc" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix module name
examples/complete/variables.tf
Outdated
type = string | ||
} | ||
|
||
variable "sg_rules" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid abbreviations. However, since this module is all about security group rules, I think it's safe to shorten this to rules
outputs.tf
Outdated
output "id" { | ||
description = "ID of the created example" | ||
value = module.this.enabled ? module.this.id : null | ||
output "sg_id" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid abbreviations
outputs.tf
Outdated
output "example" { | ||
description = "Example output" | ||
value = module.this.enabled ? local.example : null | ||
output "sg_arn" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid abbreviations
variables.tf
Outdated
description = "The Security Group description." | ||
} | ||
|
||
variable "sg_id" { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
avoid abbreviations
/test all |
what
references