Skip to content

Commit

Permalink
fix interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 12, 2022
1 parent cafd237 commit 9b1d97d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
5 changes: 3 additions & 2 deletions general/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ module "it-windows-base" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.66.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.66.0 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion general/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variable "vpc_id" {
}

data "aws_vpc" "selected" {
id = "${var.vpc_id}"
id = var.vpc_id
}

variable "vpc_full_name" {
Expand Down
5 changes: 3 additions & 2 deletions it-windows-base/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ module "it-windows-base" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.66.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.66.0 |

## Modules

Expand Down
2 changes: 1 addition & 1 deletion it-windows-base/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variable "vpc_id" {
}

data "aws_vpc" "selected" {
id = "${var.vpc_id}"
id = var.vpc_id
}

variable "vpc_full_name" {
Expand Down
8 changes: 4 additions & 4 deletions ois-scanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "ois-scanner" {
source = "git::https://vc1.csvd.census.gov/terraform-modules/aws-common-security-groups.git//ois-scanner"
# name = "ois-scanner"
vpc_id = "${var.vpc_id}"
vpc_id = var.vpc_id
# Name, CostAllocation, and Environment are pre-set
# tags = { }
}
Expand All @@ -22,13 +22,14 @@ module "ois-scanner" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.12 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.66.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.66.0 |

## Modules

Expand All @@ -45,7 +46,6 @@ No modules.

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input__module_version"></a> [\_module\_version](#input\_\_module\_version) | Module version number | `string` | `"1.17"` | no |
| <a name="input_description"></a> [description](#input\_description) | Security Group Description | `string` | `"OIS Scanner Security Group"` | no |
| <a name="input_egress_networks"></a> [egress\_networks](#input\_egress\_networks) | List of egress networks (all ports) | `list(string)` | <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
| <a name="input_egress_security_groups"></a> [egress\_security\_groups](#input\_egress\_security\_groups) | List of egress security groups (all ports) | `list(string)` | `[]` | no |
Expand Down
2 changes: 1 addition & 1 deletion ois-scanner/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* source = "git::https://vc1.csvd.census.gov/terraform-modules/aws-common-security-groups.git//ois-scanner"
*
* # name = "ois-scanner"
* vpc_id = "${var.vpc_id}"
* vpc_id = var.vpc_id
* # Name, CostAllocation, and Environment are pre-set
* # tags = { }
* }
Expand Down
2 changes: 1 addition & 1 deletion ois-scanner/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ variable "vpc_id" {
}

data "aws_vpc" "selected" {
id = "${var.vpc_id}"
id = var.vpc_id
}

variable "vpc_full_name" {
Expand Down

0 comments on commit 9b1d97d

Please sign in to comment.