|
| 1 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 2 | +// you may not use this file except in compliance with the License. |
| 3 | +// You may obtain a copy of the License at |
| 4 | +// |
| 5 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 6 | +// |
| 7 | +// Unless required by applicable law or agreed to in writing, software |
| 8 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 9 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 10 | +// See the License for the specific language governing permissions and |
| 11 | +// limitations under the License. |
| 12 | + |
| 13 | +output "resource_one_standard" { |
| 14 | + value = module.resource_names["resource_one"].standard |
| 15 | + description = "Resource one in standard format." |
| 16 | +} |
| 17 | + |
| 18 | +output "resource_two_standard" { |
| 19 | + value = module.resource_names["resource_two"].standard |
| 20 | + description = "Resource two in standard format." |
| 21 | +} |
| 22 | + |
| 23 | +output "resource_one_lowercase" { |
| 24 | + value = module.resource_names["resource_one"].lower_case_with_separator |
| 25 | + description = "Resource one in lowercase format." |
| 26 | +} |
| 27 | + |
| 28 | +output "resource_one_uppercase" { |
| 29 | + value = module.resource_names["resource_one"].upper_case_with_separator |
| 30 | + description = "Resource one in uppercase format." |
| 31 | +} |
| 32 | + |
| 33 | +output "resource_one_lowercase_without_any_separators" { |
| 34 | + value = module.resource_names["resource_one"].lower_case_without_any_separators |
| 35 | + description = "Resource one in lowercase format without separator." |
| 36 | +} |
| 37 | + |
| 38 | +output "resource_one_uppercase_without_any_separators" { |
| 39 | + value = module.resource_names["resource_one"].upper_case_without_any_separators |
| 40 | + description = "Resource one in uppercase format without separator." |
| 41 | +} |
| 42 | + |
| 43 | +output "resource_one_minimal" { |
| 44 | + value = module.resource_names["resource_one"].minimal |
| 45 | + description = "Resource one in minimal format." |
| 46 | +} |
| 47 | + |
| 48 | +output "resource_one_minimal_random_suffix" { |
| 49 | + value = module.resource_names["resource_one"].minimal_random_suffix |
| 50 | + description = "Resource one in minimal format with random number." |
| 51 | +} |
| 52 | + |
| 53 | +output "resource_one_minimal_random_suffix_without_any_separators" { |
| 54 | + value = module.resource_names["resource_one"].minimal_random_suffix_without_any_separators |
| 55 | + description = "Resource one in minimal format with random number without separator." |
| 56 | +} |
| 57 | + |
| 58 | +output "resource_one_dns_compliant_standard" { |
| 59 | + value = module.resource_names["resource_one"].dns_compliant_standard |
| 60 | + description = "Resource one in DNS compliant format." |
| 61 | +} |
| 62 | + |
| 63 | +output "resource_one_dns_compliant_minimal" { |
| 64 | + value = module.resource_names["resource_one"].dns_compliant_minimal |
| 65 | + description = "Resource one in DNS compliant minimal format." |
| 66 | +} |
| 67 | + |
| 68 | +output "resource_one_dns_compliant_minimal_random_suffix" { |
| 69 | + value = module.resource_names["resource_one"].dns_compliant_minimal_random_suffix |
| 70 | + description = "Resource one in DNS compliant minimal format with random number." |
| 71 | +} |
| 72 | + |
| 73 | +output "resource_one_camel_case" { |
| 74 | + value = module.resource_names["resource_one"].camel_case |
| 75 | + description = "Resource one in camel case format." |
| 76 | +} |
| 77 | + |
| 78 | +output "resource_one_camel_case_without_any_separators" { |
| 79 | + value = module.resource_names["resource_one"].camel_case_without_any_separators |
| 80 | + description = "Resource one in camel case format without separator." |
| 81 | +} |
| 82 | + |
| 83 | +output "resource_one_camel_case_with_separator" { |
| 84 | + value = module.resource_names["resource_one"].camel_case_with_separator |
| 85 | + description = "Resource one in camel case format with separator." |
| 86 | +} |
| 87 | + |
| 88 | +output "resource_one_recommended_per_length_restriction" { |
| 89 | + value = module.resource_names["resource_one"].recommended_per_length_restriction |
| 90 | + description = "Resource one in recommended format as per length restriction." |
| 91 | +} |
| 92 | + |
| 93 | +output "resource_two_recommended_per_length_restriction" { |
| 94 | + value = module.resource_names["resource_two"].recommended_per_length_restriction |
| 95 | + description = "Resource two in recommended format as per length restriction." |
| 96 | +} |
0 commit comments