File tree Expand file tree Collapse file tree 4 files changed +14
-15
lines changed Expand file tree Collapse file tree 4 files changed +14
-15
lines changed Original file line number Diff line number Diff line change
1
+ # Upgrading to v9.0
2
+
3
+ The v9.0 release contains backwards-incompatible changes.
4
+
5
+ ## Replace uses of apphub_service_uri
6
+
7
+ This release removes apphub_service_uri output. You can replace use of ` apphub_service_uri ` by forming the desired output as below,
8
+
9
+ ```
10
+ {
11
+ service_uri = "//storage.googleapis.com/${module.simple_bucket.name}"
12
+ service_id = substr(module.simple_bucket.name, 0, 63)
13
+ }
14
+ ```
Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ Functional examples are included in the
64
64
65
65
| Name | Description |
66
66
| ------| -------------|
67
- | apphub\_ service\_ uri | URI in CAIS style to be used by Apphub. |
68
67
| bucket | The created storage bucket |
69
68
| internal\_ kms\_ configuration | The intenal KMS Resource. |
70
69
| name | Bucket name. |
Original file line number Diff line number Diff line change @@ -166,12 +166,6 @@ spec:
166
166
})
167
167
defaultValue : {}
168
168
outputs :
169
- - name : apphub_service_uri
170
- description : URI in CAIS style to be used by Apphub.
171
- type :
172
- - object
173
- - service_id : string
174
- service_uri : string
175
169
- name : bucket
176
170
description : The created storage bucket
177
171
type :
Original file line number Diff line number Diff line change @@ -33,11 +33,3 @@ output "internal_kms_configuration" {
33
33
description = " The intenal KMS Resource."
34
34
value = var. internal_encryption_config . create_encryption_key ? module. encryption_key [0 ] : null
35
35
}
36
-
37
- output "apphub_service_uri" {
38
- value = {
39
- service_uri = " //storage.googleapis.com/${ google_storage_bucket . bucket . name } "
40
- service_id = substr (google_storage_bucket. bucket . name , 0 , 63 )
41
- }
42
- description = " URI in CAIS style to be used by Apphub."
43
- }
You can’t perform that action at this time.
0 commit comments