-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
59 lines (48 loc) · 1.69 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
output "cr_namespace" {
description = "The CR Namespace's ID"
value = alicloud_cr_namespace.registry_namespace.id
}
output "cr_access_key" {
description = "The CR Namespace's Access Key"
value = alicloud_ram_access_key.cr_ak.id
}
output "cr_user" {
description = "The CR Namespace's User"
value = alicloud_ram_login_profile.namespace_console_user.user_name
}
output "ram_user" {
description = "The RAM User"
value = alicloud_ram_user.namespace_user.name
}
output "ram_console_username" {
description = "Console login username"
value = "${alicloud_ram_login_profile.namespace_console_user.user_name}@${data.alicloud_account.current.id}.onaliyun.com"
}
output "cr_endpoint" {
description = "Public endpoint of the registry"
value = alicloud_cr_repo.namespace_repositories.0.domain_list.public
}
output "repository_ids" {
description = "List of repository IDs created"
value = alicloud_cr_repo.namespace_repositories.*.id
}
output "disposable_password" {
description = "Password to activate the console login profile, forces to reset it"
value = random_string.cr_console_password.result
}
output "access_key_status" {
description = "Status of the created AccessKey"
value = alicloud_ram_access_key.cr_ak.status
}
output "ram_policy_name" {
description = "The RAM policy name"
value = alicloud_ram_policy.cr_namespace_policy.name
}
output "ram_policy_type" {
description = "The RAM policy type"
value = alicloud_ram_policy.cr_namespace_policy.type
}
output "ram_policy_attachment" {
description = "The RAM policy attachment ID"
value = alicloud_ram_user_policy_attachment.cr_user_policy_attachment.id
}