Skip to content

Commit 3f2e0e1

Browse files
Khuzaima-ShakeelKhuzaima-Shakeel
authored andcommitted
updated description
1 parent 63bab0c commit 3f2e0e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ibm_catalog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@
450450
{
451451
"name": "deploy-arch-ibm-cos",
452452
"id": "68921490-2778-4930-ac6d-bae7be6cd958-global",
453-
"description": "Enable creation of an IBM Cloud Object Storage (COS) instance, in which the DA will create a bucket to store VPC flow logs",
453+
"description": "Enable creation of an IBM Cloud Object Storage (COS) instance, in which the DA will create a bucket to store VPC flow logs.",
454454
"flavors": ["instance"],
455455
"catalog_id": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3",
456456
"input_mapping": [

solutions/fully-configurable/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ This solution supports provisioning and configuring the following infrastructure
9494
| <a name="input_kms_key_ring_name"></a> [kms\_key\_ring\_name](#input\_kms\_key\_ring\_name) | The name of the key ring to create for the Cloud Object Storage bucket key. If an existing key is used, this variable is not required. If the prefix input variable is passed, the name of the key ring is prefixed to the value in the `<prefix>-value` format. | `string` | `"flow-logs-cos-key-ring"` | no |
9595
| <a name="input_management_endpoint_type_for_bucket"></a> [management\_endpoint\_type\_for\_bucket](#input\_management\_endpoint\_type\_for\_bucket) | The type of endpoint for the IBM Terraform provider to use to manage Cloud Object Storage buckets (`public`, `private`, or `direct`). If you are using a private endpoint, make sure that you enable virtual routing and forwarding (VRF) in your account, and that the Terraform runtime can access the IBM Cloud Private network. | `string` | `"direct"` | no |
9696
| <a name="input_network_acls"></a> [network\_acls](#input\_network\_acls) | The list of ACLs to create. Provide at least one rule for each ACL. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone-vpc/blob/main/solutions/fully-configurable/DA-types.md#network-acls-). | <pre>list(<br/> object({<br/> name = string<br/> add_ibm_cloud_internal_rules = optional(bool)<br/> add_vpc_connectivity_rules = optional(bool)<br/> prepend_ibm_rules = optional(bool)<br/> rules = list(<br/> object({<br/> name = string<br/> action = string<br/> destination = string<br/> direction = string<br/> source = string<br/> tcp = optional(<br/> object({<br/> port_max = optional(number)<br/> port_min = optional(number)<br/> source_port_max = optional(number)<br/> source_port_min = optional(number)<br/> })<br/> )<br/> udp = optional(<br/> object({<br/> port_max = optional(number)<br/> port_min = optional(number)<br/> source_port_max = optional(number)<br/> source_port_min = optional(number)<br/> })<br/> )<br/> icmp = optional(<br/> object({<br/> type = optional(number)<br/> code = optional(number)<br/> })<br/> )<br/> })<br/> )<br/> })<br/> )</pre> | <pre>[<br/> {<br/> "add_ibm_cloud_internal_rules": true,<br/> "add_vpc_connectivity_rules": true,<br/> "name": "vpc-acl",<br/> "prepend_ibm_rules": true,<br/> "rules": [<br/> {<br/> "action": "allow",<br/> "destination": "0.0.0.0/0",<br/> "direction": "inbound",<br/> "name": "allow-all-443-inbound",<br/> "source": "0.0.0.0/0",<br/> "tcp": {<br/> "port_max": 443,<br/> "port_min": 443,<br/> "source_port_max": 443,<br/> "source_port_min": 443<br/> }<br/> },<br/> {<br/> "action": "allow",<br/> "destination": "0.0.0.0/0",<br/> "direction": "inbound",<br/> "name": "allow-all-80-inbound",<br/> "source": "0.0.0.0/0",<br/> "tcp": {<br/> "port_max": 80,<br/> "port_min": 80,<br/> "source_port_max": 80,<br/> "source_port_min": 80<br/> }<br/> },<br/> {<br/> "action": "allow",<br/> "destination": "0.0.0.0/0",<br/> "direction": "inbound",<br/> "name": "allow-all-22-inbound",<br/> "source": "0.0.0.0/0",<br/> "tcp": {<br/> "port_max": 22,<br/> "port_min": 22,<br/> "source_port_max": 22,<br/> "source_port_min": 22<br/> }<br/> },<br/> {<br/> "action": "allow",<br/> "destination": "0.0.0.0/0",<br/> "direction": "outbound",<br/> "name": "allow-all-443-outbound",<br/> "source": "0.0.0.0/0",<br/> "tcp": {<br/> "port_max": 443,<br/> "port_min": 443,<br/> "source_port_max": 443,<br/> "source_port_min": 443<br/> }<br/> },<br/> {<br/> "action": "allow",<br/> "destination": "0.0.0.0/0",<br/> "direction": "outbound",<br/> "name": "allow-all-80-outbound",<br/> "source": "0.0.0.0/0",<br/> "tcp": {<br/> "port_max": 80,<br/> "port_min": 80,<br/> "source_port_max": 80,<br/> "source_port_min": 80<br/> }<br/> },<br/> {<br/> "action": "allow",<br/> "destination": "0.0.0.0/0",<br/> "direction": "outbound",<br/> "name": "allow-all-22-outbound",<br/> "source": "0.0.0.0/0",<br/> "tcp": {<br/> "port_max": 22,<br/> "port_min": 22,<br/> "source_port_max": 22,<br/> "source_port_min": 22<br/> }<br/> }<br/> ]<br/> }<br/>]</pre> | no |
97-
| <a name="input_prefix"></a> [prefix](#input\_prefix) | The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and can not contain consecutive hyphens ('--'). Example: prod-0205-es. | `string` | n/a | yes |
97+
| <a name="input_prefix"></a> [prefix](#input\_prefix) | The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and can not contain consecutive hyphens ('--'). Example: prod-0205-vpc. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/da-implementation-guidelines.md). | `string` | n/a | yes |
9898
| <a name="input_provider_visibility"></a> [provider\_visibility](#input\_provider\_visibility) | Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints). | `string` | `"private"` | no |
9999
| <a name="input_region"></a> [region](#input\_region) | Region to deploy the VPC. | `string` | `"us-south"` | no |
100100
| <a name="input_resource_tags"></a> [resource\_tags](#input\_resource\_tags) | The list of tags to add to the VPC instance. | `list(string)` | `[]` | no |

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "existing_resource_group_name" {
2727

2828
variable "prefix" {
2929
type = string
30-
description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and can not contain consecutive hyphens ('--'). Example: prod-0205-es."
30+
description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and can not contain consecutive hyphens ('--'). Example: prod-0205-vpc. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/da-implementation-guidelines.md)."
3131

3232
validation {
3333
condition = (var.prefix == null || var.prefix == "" ? true :

0 commit comments

Comments
 (0)