stdlib: fixed typo in pkg (cc @tomChv)
Signed-off-by: Sam Alba <sam.alba@gmail.com>
This commit is contained in:
parent
92ceae9ce6
commit
6ae9a0b16d
@ -1,6 +1,7 @@
|
|||||||
package elb
|
package elb
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"dagger.io/dagger/op"
|
||||||
"dagger.io/aws"
|
"dagger.io/aws"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
package rds
|
package rds
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"dagger.io/dagger/op"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"dagger.io/dagger"
|
|
||||||
"dagger.io/aws"
|
"dagger.io/aws"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -84,10 +84,10 @@ import (
|
|||||||
config: aws.#Config
|
config: aws.#Config
|
||||||
|
|
||||||
// Username
|
// Username
|
||||||
username: dagger.#Secret @dagger(input)
|
username: string @dagger(input)
|
||||||
|
|
||||||
// Password
|
// Password
|
||||||
password: dagger.#Secret @dagger(input)
|
password: string @dagger(input)
|
||||||
|
|
||||||
// ARN of the database instance
|
// ARN of the database instance
|
||||||
dbArn: string @dagger(input)
|
dbArn: string @dagger(input)
|
||||||
@ -168,11 +168,11 @@ import (
|
|||||||
"""#,
|
"""#,
|
||||||
]
|
]
|
||||||
env: {
|
env: {
|
||||||
USERNAME: unsername
|
USERNAME: username
|
||||||
PASSWORD: password
|
PASSWORD: password
|
||||||
DB_ARN: dbArn
|
DB_ARN: dbArn
|
||||||
SECRET_ARN: secretArn
|
SECRET_ARN: secretArn
|
||||||
GRAND_DATABASE: grandDatabase
|
GRAND_DATABASE: grantDatabase
|
||||||
DB_TYPE: dbType
|
DB_TYPE: dbType
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user