index.html 212 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/github/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.0, mkdocs-material-9.5.21">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.66ac8b77.min.css">
  12. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  13. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  14. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  15. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  16. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  17. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  18. </head>
  19. <body dir="ltr">
  20. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  21. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  22. <label class="md-overlay" for="__drawer"></label>
  23. <div data-md-component="skip">
  24. </div>
  25. <div data-md-component="announce">
  26. </div>
  27. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  28. <aside class="md-banner md-banner--warning">
  29. <div class="md-banner__inner md-grid md-typeset">
  30. You're not viewing the latest version.
  31. <a href="../../..">
  32. <strong>Click here to go to latest.</strong>
  33. </a>
  34. </div>
  35. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  36. </aside>
  37. </div>
  38. <header class="md-header" data-md-component="header">
  39. <nav class="md-header__inner md-grid" aria-label="Header">
  40. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  41. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  42. </a>
  43. <label class="md-header__button md-icon" for="__drawer">
  44. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  45. </label>
  46. <div class="md-header__title" data-md-component="header-title">
  47. <div class="md-header__ellipsis">
  48. <div class="md-header__topic">
  49. <span class="md-ellipsis">
  50. External Secrets Operator
  51. </span>
  52. </div>
  53. <div class="md-header__topic" data-md-component="header-topic">
  54. <span class="md-ellipsis">
  55. API specification
  56. </span>
  57. </div>
  58. </div>
  59. </div>
  60. <script>var media,input,key,value,palette=__md_get("__palette");if(palette&&palette.color){"(prefers-color-scheme)"===palette.color.media&&(media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']"),palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent"));for([key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  61. <label class="md-header__button md-icon" for="__search">
  62. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  63. </label>
  64. <div class="md-search" data-md-component="search" role="dialog">
  65. <label class="md-search__overlay" for="__search"></label>
  66. <div class="md-search__inner" role="search">
  67. <form class="md-search__form" name="search">
  68. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  69. <label class="md-search__icon md-icon" for="__search">
  70. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  71. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  72. </label>
  73. <nav class="md-search__options" aria-label="Search">
  74. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  75. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  76. </button>
  77. </nav>
  78. </form>
  79. <div class="md-search__output">
  80. <div class="md-search__scrollwrap" data-md-scrollfix>
  81. <div class="md-search-result" data-md-component="search-result">
  82. <div class="md-search-result__meta">
  83. Initializing search
  84. </div>
  85. <ol class="md-search-result__list" role="presentation"></ol>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. <div class="md-header__source">
  92. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  93. <div class="md-source__icon md-icon">
  94. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  95. </div>
  96. <div class="md-source__repository">
  97. External Secrets Operator
  98. </div>
  99. </a>
  100. </div>
  101. </nav>
  102. </header>
  103. <div class="md-container" data-md-component="container">
  104. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  105. <div class="md-grid">
  106. <ul class="md-tabs__list">
  107. <li class="md-tabs__item">
  108. <a href="../.." class="md-tabs__link">
  109. Introduction
  110. </a>
  111. </li>
  112. <li class="md-tabs__item md-tabs__item--active">
  113. <a href="../components/" class="md-tabs__link">
  114. API
  115. </a>
  116. </li>
  117. <li class="md-tabs__item">
  118. <a href="../../guides/introduction/" class="md-tabs__link">
  119. Guides
  120. </a>
  121. </li>
  122. <li class="md-tabs__item">
  123. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  124. Provider
  125. </a>
  126. </li>
  127. <li class="md-tabs__item">
  128. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  129. Examples
  130. </a>
  131. </li>
  132. <li class="md-tabs__item">
  133. <a href="../../contributing/devguide/" class="md-tabs__link">
  134. Community
  135. </a>
  136. </li>
  137. <li class="md-tabs__item">
  138. <a href="../../spec/" class="md-tabs__link">
  139. References
  140. </a>
  141. </li>
  142. </ul>
  143. </div>
  144. </nav>
  145. <main class="md-main" data-md-component="main">
  146. <div class="md-main__inner md-grid">
  147. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  148. <div class="md-sidebar__scrollwrap">
  149. <div class="md-sidebar__inner">
  150. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  151. <label class="md-nav__title" for="__drawer">
  152. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  153. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  154. </a>
  155. External Secrets Operator
  156. </label>
  157. <div class="md-nav__source">
  158. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  159. <div class="md-source__icon md-icon">
  160. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  161. </div>
  162. <div class="md-source__repository">
  163. External Secrets Operator
  164. </div>
  165. </a>
  166. </div>
  167. <ul class="md-nav__list" data-md-scrollfix>
  168. <li class="md-nav__item md-nav__item--nested">
  169. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  170. <div class="md-nav__link md-nav__container">
  171. <a href="../.." class="md-nav__link ">
  172. <span class="md-ellipsis">
  173. Introduction
  174. </span>
  175. </a>
  176. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  177. <span class="md-nav__icon md-icon"></span>
  178. </label>
  179. </div>
  180. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  181. <label class="md-nav__title" for="__nav_1">
  182. <span class="md-nav__icon md-icon"></span>
  183. Introduction
  184. </label>
  185. <ul class="md-nav__list" data-md-scrollfix>
  186. <li class="md-nav__item">
  187. <a href="../../introduction/overview/" class="md-nav__link">
  188. <span class="md-ellipsis">
  189. Overview
  190. </span>
  191. </a>
  192. </li>
  193. <li class="md-nav__item">
  194. <a href="../../introduction/getting-started/" class="md-nav__link">
  195. <span class="md-ellipsis">
  196. Getting started
  197. </span>
  198. </a>
  199. </li>
  200. <li class="md-nav__item">
  201. <a href="../../introduction/faq/" class="md-nav__link">
  202. <span class="md-ellipsis">
  203. FAQ
  204. </span>
  205. </a>
  206. </li>
  207. <li class="md-nav__item">
  208. <a href="../../introduction/stability-support/" class="md-nav__link">
  209. <span class="md-ellipsis">
  210. Stability and Support
  211. </span>
  212. </a>
  213. </li>
  214. <li class="md-nav__item">
  215. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  216. <span class="md-ellipsis">
  217. Deprecation Policy
  218. </span>
  219. </a>
  220. </li>
  221. </ul>
  222. </nav>
  223. </li>
  224. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  225. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  226. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  227. <span class="md-ellipsis">
  228. API
  229. </span>
  230. <span class="md-nav__icon md-icon"></span>
  231. </label>
  232. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  233. <label class="md-nav__title" for="__nav_2">
  234. <span class="md-nav__icon md-icon"></span>
  235. API
  236. </label>
  237. <ul class="md-nav__list" data-md-scrollfix>
  238. <li class="md-nav__item">
  239. <a href="../components/" class="md-nav__link">
  240. <span class="md-ellipsis">
  241. Components
  242. </span>
  243. </a>
  244. </li>
  245. <li class="md-nav__item md-nav__item--nested">
  246. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  247. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  248. <span class="md-ellipsis">
  249. Core Resources
  250. </span>
  251. <span class="md-nav__icon md-icon"></span>
  252. </label>
  253. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  254. <label class="md-nav__title" for="__nav_2_2">
  255. <span class="md-nav__icon md-icon"></span>
  256. Core Resources
  257. </label>
  258. <ul class="md-nav__list" data-md-scrollfix>
  259. <li class="md-nav__item">
  260. <a href="../externalsecret/" class="md-nav__link">
  261. <span class="md-ellipsis">
  262. ExternalSecret
  263. </span>
  264. </a>
  265. </li>
  266. <li class="md-nav__item">
  267. <a href="../secretstore/" class="md-nav__link">
  268. <span class="md-ellipsis">
  269. SecretStore
  270. </span>
  271. </a>
  272. </li>
  273. <li class="md-nav__item">
  274. <a href="../clustersecretstore/" class="md-nav__link">
  275. <span class="md-ellipsis">
  276. ClusterSecretStore
  277. </span>
  278. </a>
  279. </li>
  280. <li class="md-nav__item">
  281. <a href="../clusterexternalsecret/" class="md-nav__link">
  282. <span class="md-ellipsis">
  283. ClusterExternalSecret
  284. </span>
  285. </a>
  286. </li>
  287. <li class="md-nav__item">
  288. <a href="../pushsecret/" class="md-nav__link">
  289. <span class="md-ellipsis">
  290. PushSecret
  291. </span>
  292. </a>
  293. </li>
  294. </ul>
  295. </nav>
  296. </li>
  297. <li class="md-nav__item md-nav__item--nested">
  298. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  299. <div class="md-nav__link md-nav__container">
  300. <a href="../generator/" class="md-nav__link ">
  301. <span class="md-ellipsis">
  302. Generators
  303. </span>
  304. </a>
  305. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  306. <span class="md-nav__icon md-icon"></span>
  307. </label>
  308. </div>
  309. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  310. <label class="md-nav__title" for="__nav_2_3">
  311. <span class="md-nav__icon md-icon"></span>
  312. Generators
  313. </label>
  314. <ul class="md-nav__list" data-md-scrollfix>
  315. <li class="md-nav__item">
  316. <a href="../generator/acr/" class="md-nav__link">
  317. <span class="md-ellipsis">
  318. Azure Container Registry
  319. </span>
  320. </a>
  321. </li>
  322. <li class="md-nav__item">
  323. <a href="../generator/ecr/" class="md-nav__link">
  324. <span class="md-ellipsis">
  325. AWS Elastic Container Registry
  326. </span>
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../generator/gcr/" class="md-nav__link">
  331. <span class="md-ellipsis">
  332. Google Container Registry
  333. </span>
  334. </a>
  335. </li>
  336. <li class="md-nav__item">
  337. <a href="../generator/vault/" class="md-nav__link">
  338. <span class="md-ellipsis">
  339. Vault Dynamic Secret
  340. </span>
  341. </a>
  342. </li>
  343. <li class="md-nav__item">
  344. <a href="../generator/password/" class="md-nav__link">
  345. <span class="md-ellipsis">
  346. Password
  347. </span>
  348. </a>
  349. </li>
  350. <li class="md-nav__item">
  351. <a href="../generator/fake/" class="md-nav__link">
  352. <span class="md-ellipsis">
  353. Fake
  354. </span>
  355. </a>
  356. </li>
  357. <li class="md-nav__item">
  358. <a href="../generator/webhook/" class="md-nav__link">
  359. <span class="md-ellipsis">
  360. Webhook
  361. </span>
  362. </a>
  363. </li>
  364. <li class="md-nav__item">
  365. <a href="../generator/github/" class="md-nav__link">
  366. <span class="md-ellipsis">
  367. Github
  368. </span>
  369. </a>
  370. </li>
  371. </ul>
  372. </nav>
  373. </li>
  374. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  375. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  376. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  377. <span class="md-ellipsis">
  378. Reference Docs
  379. </span>
  380. <span class="md-nav__icon md-icon"></span>
  381. </label>
  382. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  383. <label class="md-nav__title" for="__nav_2_4">
  384. <span class="md-nav__icon md-icon"></span>
  385. Reference Docs
  386. </label>
  387. <ul class="md-nav__list" data-md-scrollfix>
  388. <li class="md-nav__item md-nav__item--active">
  389. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  390. <a href="./" class="md-nav__link md-nav__link--active">
  391. <span class="md-ellipsis">
  392. API specification
  393. </span>
  394. </a>
  395. </li>
  396. <li class="md-nav__item">
  397. <a href="../controller-options/" class="md-nav__link">
  398. <span class="md-ellipsis">
  399. Controller Options
  400. </span>
  401. </a>
  402. </li>
  403. <li class="md-nav__item">
  404. <a href="../metrics/" class="md-nav__link">
  405. <span class="md-ellipsis">
  406. Metrics
  407. </span>
  408. </a>
  409. </li>
  410. </ul>
  411. </nav>
  412. </li>
  413. </ul>
  414. </nav>
  415. </li>
  416. <li class="md-nav__item md-nav__item--nested">
  417. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  418. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  419. <span class="md-ellipsis">
  420. Guides
  421. </span>
  422. <span class="md-nav__icon md-icon"></span>
  423. </label>
  424. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  425. <label class="md-nav__title" for="__nav_3">
  426. <span class="md-nav__icon md-icon"></span>
  427. Guides
  428. </label>
  429. <ul class="md-nav__list" data-md-scrollfix>
  430. <li class="md-nav__item">
  431. <a href="../../guides/introduction/" class="md-nav__link">
  432. <span class="md-ellipsis">
  433. Introduction
  434. </span>
  435. </a>
  436. </li>
  437. <li class="md-nav__item md-nav__item--nested">
  438. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  439. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  440. <span class="md-ellipsis">
  441. External Secrets
  442. </span>
  443. <span class="md-nav__icon md-icon"></span>
  444. </label>
  445. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  446. <label class="md-nav__title" for="__nav_3_2">
  447. <span class="md-nav__icon md-icon"></span>
  448. External Secrets
  449. </label>
  450. <ul class="md-nav__list" data-md-scrollfix>
  451. <li class="md-nav__item">
  452. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  453. <span class="md-ellipsis">
  454. Extract structured data
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../../guides/getallsecrets/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Find Secrets by Name or Metadata
  462. </span>
  463. </a>
  464. </li>
  465. <li class="md-nav__item">
  466. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. Rewriting Keys
  469. </span>
  470. </a>
  471. </li>
  472. <li class="md-nav__item md-nav__item--nested">
  473. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  474. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  475. <span class="md-ellipsis">
  476. Advanced Templating
  477. </span>
  478. <span class="md-nav__icon md-icon"></span>
  479. </label>
  480. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  481. <label class="md-nav__title" for="__nav_3_2_4">
  482. <span class="md-nav__icon md-icon"></span>
  483. Advanced Templating
  484. </label>
  485. <ul class="md-nav__list" data-md-scrollfix>
  486. <li class="md-nav__item">
  487. <a href="../../guides/templating/" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. v2
  490. </span>
  491. </a>
  492. </li>
  493. <li class="md-nav__item">
  494. <a href="../../guides/templating-v1/" class="md-nav__link">
  495. <span class="md-ellipsis">
  496. v1
  497. </span>
  498. </a>
  499. </li>
  500. </ul>
  501. </nav>
  502. </li>
  503. <li class="md-nav__item">
  504. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  505. <span class="md-ellipsis">
  506. Kubernetes Secret Types
  507. </span>
  508. </a>
  509. </li>
  510. <li class="md-nav__item">
  511. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  512. <span class="md-ellipsis">
  513. Lifecycle: ownership & deletion
  514. </span>
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  519. <span class="md-ellipsis">
  520. Decoding Strategies
  521. </span>
  522. </a>
  523. </li>
  524. <li class="md-nav__item">
  525. <a href="../../guides/controller-class/" class="md-nav__link">
  526. <span class="md-ellipsis">
  527. Controller Classes
  528. </span>
  529. </a>
  530. </li>
  531. </ul>
  532. </nav>
  533. </li>
  534. <li class="md-nav__item">
  535. <a href="../../guides/generator/" class="md-nav__link">
  536. <span class="md-ellipsis">
  537. Generators
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="../../guides/pushsecrets/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. Push Secrets
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item md-nav__item--nested">
  549. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  550. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  551. <span class="md-ellipsis">
  552. Operations
  553. </span>
  554. <span class="md-nav__icon md-icon"></span>
  555. </label>
  556. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  557. <label class="md-nav__title" for="__nav_3_5">
  558. <span class="md-nav__icon md-icon"></span>
  559. Operations
  560. </label>
  561. <ul class="md-nav__list" data-md-scrollfix>
  562. <li class="md-nav__item">
  563. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  564. <span class="md-ellipsis">
  565. Multi Tenancy
  566. </span>
  567. </a>
  568. </li>
  569. <li class="md-nav__item">
  570. <a href="../../guides/security-best-practices/" class="md-nav__link">
  571. <span class="md-ellipsis">
  572. Security Best Practices
  573. </span>
  574. </a>
  575. </li>
  576. <li class="md-nav__item">
  577. <a href="../../guides/threat-model/" class="md-nav__link">
  578. <span class="md-ellipsis">
  579. Threat Model
  580. </span>
  581. </a>
  582. </li>
  583. <li class="md-nav__item">
  584. <a href="../../guides/v1beta1/" class="md-nav__link">
  585. <span class="md-ellipsis">
  586. Upgrading to v1beta1
  587. </span>
  588. </a>
  589. </li>
  590. <li class="md-nav__item">
  591. <a href="../../guides/using-latest-image/" class="md-nav__link">
  592. <span class="md-ellipsis">
  593. Using Latest Image
  594. </span>
  595. </a>
  596. </li>
  597. <li class="md-nav__item">
  598. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  599. <span class="md-ellipsis">
  600. Disable Cluster Features
  601. </span>
  602. </a>
  603. </li>
  604. </ul>
  605. </nav>
  606. </li>
  607. </ul>
  608. </nav>
  609. </li>
  610. <li class="md-nav__item md-nav__item--nested">
  611. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  612. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  613. <span class="md-ellipsis">
  614. Provider
  615. </span>
  616. <span class="md-nav__icon md-icon"></span>
  617. </label>
  618. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  619. <label class="md-nav__title" for="__nav_4">
  620. <span class="md-nav__icon md-icon"></span>
  621. Provider
  622. </label>
  623. <ul class="md-nav__list" data-md-scrollfix>
  624. <li class="md-nav__item">
  625. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. AWS Secrets Manager
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. AWS Parameter Store
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Azure Key Vault
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../provider/chef/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Chef
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../provider/conjur/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. CyberArk Conjur
  656. </span>
  657. </a>
  658. </li>
  659. <li class="md-nav__item">
  660. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  661. <span class="md-ellipsis">
  662. Google Cloud Secret Manager
  663. </span>
  664. </a>
  665. </li>
  666. <li class="md-nav__item">
  667. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  668. <span class="md-ellipsis">
  669. HashiCorp Vault
  670. </span>
  671. </a>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="../../provider/kubernetes/" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. Kubernetes
  677. </span>
  678. </a>
  679. </li>
  680. <li class="md-nav__item">
  681. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  682. <span class="md-ellipsis">
  683. IBM Secrets Manager
  684. </span>
  685. </a>
  686. </li>
  687. <li class="md-nav__item">
  688. <a href="../../provider/akeyless/" class="md-nav__link">
  689. <span class="md-ellipsis">
  690. Akeyless
  691. </span>
  692. </a>
  693. </li>
  694. <li class="md-nav__item">
  695. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  696. <span class="md-ellipsis">
  697. Yandex Certificate Manager
  698. </span>
  699. </a>
  700. </li>
  701. <li class="md-nav__item">
  702. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  703. <span class="md-ellipsis">
  704. Yandex Lockbox
  705. </span>
  706. </a>
  707. </li>
  708. <li class="md-nav__item">
  709. <a href="../../provider/alibaba/" class="md-nav__link">
  710. <span class="md-ellipsis">
  711. Alibaba Cloud
  712. </span>
  713. </a>
  714. </li>
  715. <li class="md-nav__item">
  716. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  717. <span class="md-ellipsis">
  718. GitLab Variables
  719. </span>
  720. </a>
  721. </li>
  722. <li class="md-nav__item">
  723. <a href="../../provider/oracle-vault/" class="md-nav__link">
  724. <span class="md-ellipsis">
  725. Oracle Vault
  726. </span>
  727. </a>
  728. </li>
  729. <li class="md-nav__item">
  730. <a href="../../provider/1password-automation/" class="md-nav__link">
  731. <span class="md-ellipsis">
  732. 1Password Secrets Automation
  733. </span>
  734. </a>
  735. </li>
  736. <li class="md-nav__item">
  737. <a href="../../provider/webhook/" class="md-nav__link">
  738. <span class="md-ellipsis">
  739. Webhook
  740. </span>
  741. </a>
  742. </li>
  743. <li class="md-nav__item">
  744. <a href="../../provider/fake/" class="md-nav__link">
  745. <span class="md-ellipsis">
  746. Fake
  747. </span>
  748. </a>
  749. </li>
  750. <li class="md-nav__item">
  751. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  752. <span class="md-ellipsis">
  753. senhasegura DevOps Secrets Management (DSM)
  754. </span>
  755. </a>
  756. </li>
  757. <li class="md-nav__item">
  758. <a href="../../provider/doppler/" class="md-nav__link">
  759. <span class="md-ellipsis">
  760. Doppler
  761. </span>
  762. </a>
  763. </li>
  764. <li class="md-nav__item">
  765. <a href="../../provider/keeper-security/" class="md-nav__link">
  766. <span class="md-ellipsis">
  767. Keeper Security
  768. </span>
  769. </a>
  770. </li>
  771. <li class="md-nav__item">
  772. <a href="../../provider/cloak/" class="md-nav__link">
  773. <span class="md-ellipsis">
  774. Cloak End 2 End Encrypted Secrets
  775. </span>
  776. </a>
  777. </li>
  778. <li class="md-nav__item">
  779. <a href="../../provider/scaleway/" class="md-nav__link">
  780. <span class="md-ellipsis">
  781. Scaleway
  782. </span>
  783. </a>
  784. </li>
  785. <li class="md-nav__item">
  786. <a href="../../provider/delinea/" class="md-nav__link">
  787. <span class="md-ellipsis">
  788. Delinea
  789. </span>
  790. </a>
  791. </li>
  792. <li class="md-nav__item">
  793. <a href="../../provider/passbolt/" class="md-nav__link">
  794. <span class="md-ellipsis">
  795. Passbolt
  796. </span>
  797. </a>
  798. </li>
  799. <li class="md-nav__item">
  800. <a href="../../provider/pulumi/" class="md-nav__link">
  801. <span class="md-ellipsis">
  802. Pulumi ESC
  803. </span>
  804. </a>
  805. </li>
  806. <li class="md-nav__item">
  807. <a href="../../provider/onboardbase/" class="md-nav__link">
  808. <span class="md-ellipsis">
  809. Onboardbase
  810. </span>
  811. </a>
  812. </li>
  813. <li class="md-nav__item">
  814. <a href="../../provider-passworddepot/" class="md-nav__link">
  815. <span class="md-ellipsis">
  816. Password Depot
  817. </span>
  818. </a>
  819. </li>
  820. <li class="md-nav__item">
  821. <a href="../../provider/fortanix/" class="md-nav__link">
  822. <span class="md-ellipsis">
  823. Fortanix
  824. </span>
  825. </a>
  826. </li>
  827. </ul>
  828. </nav>
  829. </li>
  830. <li class="md-nav__item md-nav__item--nested">
  831. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  832. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  833. <span class="md-ellipsis">
  834. Examples
  835. </span>
  836. <span class="md-nav__icon md-icon"></span>
  837. </label>
  838. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  839. <label class="md-nav__title" for="__nav_5">
  840. <span class="md-nav__icon md-icon"></span>
  841. Examples
  842. </label>
  843. <ul class="md-nav__list" data-md-scrollfix>
  844. <li class="md-nav__item">
  845. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  846. <span class="md-ellipsis">
  847. FluxCD
  848. </span>
  849. </a>
  850. </li>
  851. <li class="md-nav__item">
  852. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  853. <span class="md-ellipsis">
  854. Anchore Engine
  855. </span>
  856. </a>
  857. </li>
  858. <li class="md-nav__item">
  859. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  860. <span class="md-ellipsis">
  861. Jenkins
  862. </span>
  863. </a>
  864. </li>
  865. <li class="md-nav__item">
  866. <a href="../../examples/bitwarden/" class="md-nav__link">
  867. <span class="md-ellipsis">
  868. BitWarden
  869. </span>
  870. </a>
  871. </li>
  872. </ul>
  873. </nav>
  874. </li>
  875. <li class="md-nav__item md-nav__item--nested">
  876. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  877. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  878. <span class="md-ellipsis">
  879. Community
  880. </span>
  881. <span class="md-nav__icon md-icon"></span>
  882. </label>
  883. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  884. <label class="md-nav__title" for="__nav_6">
  885. <span class="md-nav__icon md-icon"></span>
  886. Community
  887. </label>
  888. <ul class="md-nav__list" data-md-scrollfix>
  889. <li class="md-nav__item md-nav__item--nested">
  890. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  891. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  892. <span class="md-ellipsis">
  893. Contributing
  894. </span>
  895. <span class="md-nav__icon md-icon"></span>
  896. </label>
  897. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  898. <label class="md-nav__title" for="__nav_6_1">
  899. <span class="md-nav__icon md-icon"></span>
  900. Contributing
  901. </label>
  902. <ul class="md-nav__list" data-md-scrollfix>
  903. <li class="md-nav__item">
  904. <a href="../../contributing/devguide/" class="md-nav__link">
  905. <span class="md-ellipsis">
  906. Developer guide
  907. </span>
  908. </a>
  909. </li>
  910. <li class="md-nav__item">
  911. <a href="../../contributing/process/" class="md-nav__link">
  912. <span class="md-ellipsis">
  913. Contributing Process
  914. </span>
  915. </a>
  916. </li>
  917. <li class="md-nav__item">
  918. <a href="../../contributing/release/" class="md-nav__link">
  919. <span class="md-ellipsis">
  920. Release Process
  921. </span>
  922. </a>
  923. </li>
  924. <li class="md-nav__item">
  925. <a href="../../contributing/coc/" class="md-nav__link">
  926. <span class="md-ellipsis">
  927. Code of Conduct
  928. </span>
  929. </a>
  930. </li>
  931. <li class="md-nav__item">
  932. <a href="../../contributing/roadmap/" class="md-nav__link">
  933. <span class="md-ellipsis">
  934. Roadmap
  935. </span>
  936. </a>
  937. </li>
  938. </ul>
  939. </nav>
  940. </li>
  941. <li class="md-nav__item md-nav__item--nested">
  942. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  943. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  944. <span class="md-ellipsis">
  945. External Resources
  946. </span>
  947. <span class="md-nav__icon md-icon"></span>
  948. </label>
  949. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  950. <label class="md-nav__title" for="__nav_6_2">
  951. <span class="md-nav__icon md-icon"></span>
  952. External Resources
  953. </label>
  954. <ul class="md-nav__list" data-md-scrollfix>
  955. <li class="md-nav__item">
  956. <a href="../../eso-talks/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Talks
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../eso-demos/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Demos
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../eso-blogs/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. Blogs
  973. </span>
  974. </a>
  975. </li>
  976. </ul>
  977. </nav>
  978. </li>
  979. </ul>
  980. </nav>
  981. </li>
  982. <li class="md-nav__item md-nav__item--nested">
  983. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_7" >
  984. <label class="md-nav__link" for="__nav_7" id="__nav_7_label" tabindex="0">
  985. <span class="md-ellipsis">
  986. References
  987. </span>
  988. <span class="md-nav__icon md-icon"></span>
  989. </label>
  990. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_7_label" aria-expanded="false">
  991. <label class="md-nav__title" for="__nav_7">
  992. <span class="md-nav__icon md-icon"></span>
  993. References
  994. </label>
  995. <ul class="md-nav__list" data-md-scrollfix>
  996. <li class="md-nav__item">
  997. <a href="../../spec/" class="md-nav__link">
  998. <span class="md-ellipsis">
  999. API specification
  1000. </span>
  1001. </a>
  1002. </li>
  1003. </ul>
  1004. </nav>
  1005. </li>
  1006. </ul>
  1007. </nav>
  1008. </div>
  1009. </div>
  1010. </div>
  1011. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1012. <div class="md-sidebar__scrollwrap">
  1013. <div class="md-sidebar__inner">
  1014. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1015. </nav>
  1016. </div>
  1017. </div>
  1018. </div>
  1019. <div class="md-content" data-md-component="content">
  1020. <article class="md-content__inner md-typeset">
  1021. <h1>API specification</h1>
  1022. <p>Packages:</p>
  1023. <ul>
  1024. <li>
  1025. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  1026. </li>
  1027. </ul>
  1028. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  1029. <p>
  1030. <p>Package v1beta1 contains resources for external-secrets</p>
  1031. </p>
  1032. <p>Resource Types:</p>
  1033. <ul></ul>
  1034. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  1035. </h3>
  1036. <p>
  1037. (<em>Appears on:</em>
  1038. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1039. </p>
  1040. <p>
  1041. <p>AWSAuth tells the controller how to do authentication with aws.
  1042. Only one of secretRef or jwt can be specified.
  1043. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1044. </p>
  1045. <table>
  1046. <thead>
  1047. <tr>
  1048. <th>Field</th>
  1049. <th>Description</th>
  1050. </tr>
  1051. </thead>
  1052. <tbody>
  1053. <tr>
  1054. <td>
  1055. <code>secretRef</code></br>
  1056. <em>
  1057. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  1058. AWSAuthSecretRef
  1059. </a>
  1060. </em>
  1061. </td>
  1062. <td>
  1063. <em>(Optional)</em>
  1064. </td>
  1065. </tr>
  1066. <tr>
  1067. <td>
  1068. <code>jwt</code></br>
  1069. <em>
  1070. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  1071. AWSJWTAuth
  1072. </a>
  1073. </em>
  1074. </td>
  1075. <td>
  1076. <em>(Optional)</em>
  1077. </td>
  1078. </tr>
  1079. </tbody>
  1080. </table>
  1081. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  1082. </h3>
  1083. <p>
  1084. (<em>Appears on:</em>
  1085. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1086. </p>
  1087. <p>
  1088. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1089. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1090. </p>
  1091. <table>
  1092. <thead>
  1093. <tr>
  1094. <th>Field</th>
  1095. <th>Description</th>
  1096. </tr>
  1097. </thead>
  1098. <tbody>
  1099. <tr>
  1100. <td>
  1101. <code>accessKeyIDSecretRef</code></br>
  1102. <em>
  1103. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1104. External Secrets meta/v1.SecretKeySelector
  1105. </a>
  1106. </em>
  1107. </td>
  1108. <td>
  1109. <p>The AccessKeyID is used for authentication</p>
  1110. </td>
  1111. </tr>
  1112. <tr>
  1113. <td>
  1114. <code>secretAccessKeySecretRef</code></br>
  1115. <em>
  1116. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1117. External Secrets meta/v1.SecretKeySelector
  1118. </a>
  1119. </em>
  1120. </td>
  1121. <td>
  1122. <p>The SecretAccessKey is used for authentication</p>
  1123. </td>
  1124. </tr>
  1125. <tr>
  1126. <td>
  1127. <code>sessionTokenSecretRef</code></br>
  1128. <em>
  1129. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1130. External Secrets meta/v1.SecretKeySelector
  1131. </a>
  1132. </em>
  1133. </td>
  1134. <td>
  1135. <p>The SessionToken used for authentication
  1136. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1137. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1138. </td>
  1139. </tr>
  1140. </tbody>
  1141. </table>
  1142. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  1143. </h3>
  1144. <p>
  1145. (<em>Appears on:</em>
  1146. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  1147. </p>
  1148. <p>
  1149. <p>Authenticate against AWS using service account tokens.</p>
  1150. </p>
  1151. <table>
  1152. <thead>
  1153. <tr>
  1154. <th>Field</th>
  1155. <th>Description</th>
  1156. </tr>
  1157. </thead>
  1158. <tbody>
  1159. <tr>
  1160. <td>
  1161. <code>serviceAccountRef</code></br>
  1162. <em>
  1163. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1164. External Secrets meta/v1.ServiceAccountSelector
  1165. </a>
  1166. </em>
  1167. </td>
  1168. <td>
  1169. </td>
  1170. </tr>
  1171. </tbody>
  1172. </table>
  1173. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  1174. </h3>
  1175. <p>
  1176. (<em>Appears on:</em>
  1177. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1178. </p>
  1179. <p>
  1180. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1181. </p>
  1182. <table>
  1183. <thead>
  1184. <tr>
  1185. <th>Field</th>
  1186. <th>Description</th>
  1187. </tr>
  1188. </thead>
  1189. <tbody>
  1190. <tr>
  1191. <td>
  1192. <code>service</code></br>
  1193. <em>
  1194. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  1195. AWSServiceType
  1196. </a>
  1197. </em>
  1198. </td>
  1199. <td>
  1200. <p>Service defines which service should be used to fetch the secrets</p>
  1201. </td>
  1202. </tr>
  1203. <tr>
  1204. <td>
  1205. <code>auth</code></br>
  1206. <em>
  1207. <a href="#external-secrets.io/v1beta1.AWSAuth">
  1208. AWSAuth
  1209. </a>
  1210. </em>
  1211. </td>
  1212. <td>
  1213. <em>(Optional)</em>
  1214. <p>Auth defines the information necessary to authenticate against AWS
  1215. if not set aws sdk will infer credentials from your environment
  1216. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1217. </td>
  1218. </tr>
  1219. <tr>
  1220. <td>
  1221. <code>role</code></br>
  1222. <em>
  1223. string
  1224. </em>
  1225. </td>
  1226. <td>
  1227. <em>(Optional)</em>
  1228. <p>Role is a Role ARN which the provider will assume</p>
  1229. </td>
  1230. </tr>
  1231. <tr>
  1232. <td>
  1233. <code>region</code></br>
  1234. <em>
  1235. string
  1236. </em>
  1237. </td>
  1238. <td>
  1239. <p>AWS Region to be used for the provider</p>
  1240. </td>
  1241. </tr>
  1242. <tr>
  1243. <td>
  1244. <code>additionalRoles</code></br>
  1245. <em>
  1246. []string
  1247. </em>
  1248. </td>
  1249. <td>
  1250. <em>(Optional)</em>
  1251. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1252. </td>
  1253. </tr>
  1254. <tr>
  1255. <td>
  1256. <code>externalID</code></br>
  1257. <em>
  1258. string
  1259. </em>
  1260. </td>
  1261. <td>
  1262. <p>AWS External ID set on assumed IAM roles</p>
  1263. </td>
  1264. </tr>
  1265. <tr>
  1266. <td>
  1267. <code>sessionTags</code></br>
  1268. <em>
  1269. <a href="#external-secrets.io/v1beta1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag">
  1270. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1beta1.Tag
  1271. </a>
  1272. </em>
  1273. </td>
  1274. <td>
  1275. <em>(Optional)</em>
  1276. <p>AWS STS assume role session tags</p>
  1277. </td>
  1278. </tr>
  1279. <tr>
  1280. <td>
  1281. <code>secretsManager</code></br>
  1282. <em>
  1283. <a href="#external-secrets.io/v1beta1.SecretsManager">
  1284. SecretsManager
  1285. </a>
  1286. </em>
  1287. </td>
  1288. <td>
  1289. <em>(Optional)</em>
  1290. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1291. </td>
  1292. </tr>
  1293. <tr>
  1294. <td>
  1295. <code>transitiveTagKeys</code></br>
  1296. <em>
  1297. []*string
  1298. </em>
  1299. </td>
  1300. <td>
  1301. <em>(Optional)</em>
  1302. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1303. </td>
  1304. </tr>
  1305. </tbody>
  1306. </table>
  1307. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  1308. (<code>string</code> alias)</p></h3>
  1309. <p>
  1310. (<em>Appears on:</em>
  1311. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  1312. </p>
  1313. <p>
  1314. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1315. </p>
  1316. <table>
  1317. <thead>
  1318. <tr>
  1319. <th>Value</th>
  1320. <th>Description</th>
  1321. </tr>
  1322. </thead>
  1323. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1324. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1325. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1326. </td>
  1327. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1328. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1329. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1330. </td>
  1331. </tr></tbody>
  1332. </table>
  1333. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  1334. </h3>
  1335. <p>
  1336. (<em>Appears on:</em>
  1337. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  1338. </p>
  1339. <p>
  1340. </p>
  1341. <table>
  1342. <thead>
  1343. <tr>
  1344. <th>Field</th>
  1345. <th>Description</th>
  1346. </tr>
  1347. </thead>
  1348. <tbody>
  1349. <tr>
  1350. <td>
  1351. <code>secretRef</code></br>
  1352. <em>
  1353. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1354. AkeylessAuthSecretRef
  1355. </a>
  1356. </em>
  1357. </td>
  1358. <td>
  1359. <em>(Optional)</em>
  1360. <p>Reference to a Secret that contains the details
  1361. to authenticate with Akeyless.</p>
  1362. </td>
  1363. </tr>
  1364. <tr>
  1365. <td>
  1366. <code>kubernetesAuth</code></br>
  1367. <em>
  1368. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1369. AkeylessKubernetesAuth
  1370. </a>
  1371. </em>
  1372. </td>
  1373. <td>
  1374. <em>(Optional)</em>
  1375. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1376. token stored in the named Secret resource.</p>
  1377. </td>
  1378. </tr>
  1379. </tbody>
  1380. </table>
  1381. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1382. </h3>
  1383. <p>
  1384. (<em>Appears on:</em>
  1385. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1386. </p>
  1387. <p>
  1388. <p>AkeylessAuthSecretRef
  1389. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1390. </p>
  1391. <table>
  1392. <thead>
  1393. <tr>
  1394. <th>Field</th>
  1395. <th>Description</th>
  1396. </tr>
  1397. </thead>
  1398. <tbody>
  1399. <tr>
  1400. <td>
  1401. <code>accessID</code></br>
  1402. <em>
  1403. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1404. External Secrets meta/v1.SecretKeySelector
  1405. </a>
  1406. </em>
  1407. </td>
  1408. <td>
  1409. <p>The SecretAccessID is used for authentication</p>
  1410. </td>
  1411. </tr>
  1412. <tr>
  1413. <td>
  1414. <code>accessType</code></br>
  1415. <em>
  1416. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1417. External Secrets meta/v1.SecretKeySelector
  1418. </a>
  1419. </em>
  1420. </td>
  1421. <td>
  1422. </td>
  1423. </tr>
  1424. <tr>
  1425. <td>
  1426. <code>accessTypeParam</code></br>
  1427. <em>
  1428. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1429. External Secrets meta/v1.SecretKeySelector
  1430. </a>
  1431. </em>
  1432. </td>
  1433. <td>
  1434. </td>
  1435. </tr>
  1436. </tbody>
  1437. </table>
  1438. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1439. </h3>
  1440. <p>
  1441. (<em>Appears on:</em>
  1442. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1443. </p>
  1444. <p>
  1445. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1446. </p>
  1447. <table>
  1448. <thead>
  1449. <tr>
  1450. <th>Field</th>
  1451. <th>Description</th>
  1452. </tr>
  1453. </thead>
  1454. <tbody>
  1455. <tr>
  1456. <td>
  1457. <code>accessID</code></br>
  1458. <em>
  1459. string
  1460. </em>
  1461. </td>
  1462. <td>
  1463. <p>the Akeyless Kubernetes auth-method access-id</p>
  1464. </td>
  1465. </tr>
  1466. <tr>
  1467. <td>
  1468. <code>k8sConfName</code></br>
  1469. <em>
  1470. string
  1471. </em>
  1472. </td>
  1473. <td>
  1474. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1475. </td>
  1476. </tr>
  1477. <tr>
  1478. <td>
  1479. <code>serviceAccountRef</code></br>
  1480. <em>
  1481. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1482. External Secrets meta/v1.ServiceAccountSelector
  1483. </a>
  1484. </em>
  1485. </td>
  1486. <td>
  1487. <em>(Optional)</em>
  1488. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1489. If the service account is specified, the service account secret token JWT will be used
  1490. for authenticating with Akeyless. If the service account selector is not supplied,
  1491. the secretRef will be used instead.</p>
  1492. </td>
  1493. </tr>
  1494. <tr>
  1495. <td>
  1496. <code>secretRef</code></br>
  1497. <em>
  1498. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1499. External Secrets meta/v1.SecretKeySelector
  1500. </a>
  1501. </em>
  1502. </td>
  1503. <td>
  1504. <em>(Optional)</em>
  1505. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1506. for authenticating with Akeyless. If a name is specified without a key,
  1507. <code>token</code> is the default. If one is not specified, the one bound to
  1508. the controller will be used.</p>
  1509. </td>
  1510. </tr>
  1511. </tbody>
  1512. </table>
  1513. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1514. </h3>
  1515. <p>
  1516. (<em>Appears on:</em>
  1517. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1518. </p>
  1519. <p>
  1520. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1521. </p>
  1522. <table>
  1523. <thead>
  1524. <tr>
  1525. <th>Field</th>
  1526. <th>Description</th>
  1527. </tr>
  1528. </thead>
  1529. <tbody>
  1530. <tr>
  1531. <td>
  1532. <code>akeylessGWApiURL</code></br>
  1533. <em>
  1534. string
  1535. </em>
  1536. </td>
  1537. <td>
  1538. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1539. </td>
  1540. </tr>
  1541. <tr>
  1542. <td>
  1543. <code>authSecretRef</code></br>
  1544. <em>
  1545. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1546. AkeylessAuth
  1547. </a>
  1548. </em>
  1549. </td>
  1550. <td>
  1551. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1552. </td>
  1553. </tr>
  1554. <tr>
  1555. <td>
  1556. <code>caBundle</code></br>
  1557. <em>
  1558. []byte
  1559. </em>
  1560. </td>
  1561. <td>
  1562. <em>(Optional)</em>
  1563. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1564. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1565. are used to validate the TLS connection.</p>
  1566. </td>
  1567. </tr>
  1568. <tr>
  1569. <td>
  1570. <code>caProvider</code></br>
  1571. <em>
  1572. <a href="#external-secrets.io/v1beta1.CAProvider">
  1573. CAProvider
  1574. </a>
  1575. </em>
  1576. </td>
  1577. <td>
  1578. <em>(Optional)</em>
  1579. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1580. </td>
  1581. </tr>
  1582. </tbody>
  1583. </table>
  1584. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1585. </h3>
  1586. <p>
  1587. (<em>Appears on:</em>
  1588. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1589. </p>
  1590. <p>
  1591. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1592. </p>
  1593. <table>
  1594. <thead>
  1595. <tr>
  1596. <th>Field</th>
  1597. <th>Description</th>
  1598. </tr>
  1599. </thead>
  1600. <tbody>
  1601. <tr>
  1602. <td>
  1603. <code>secretRef</code></br>
  1604. <em>
  1605. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1606. AlibabaAuthSecretRef
  1607. </a>
  1608. </em>
  1609. </td>
  1610. <td>
  1611. <em>(Optional)</em>
  1612. </td>
  1613. </tr>
  1614. <tr>
  1615. <td>
  1616. <code>rrsa</code></br>
  1617. <em>
  1618. <a href="#external-secrets.io/v1beta1.AlibabaRRSAAuth">
  1619. AlibabaRRSAAuth
  1620. </a>
  1621. </em>
  1622. </td>
  1623. <td>
  1624. <em>(Optional)</em>
  1625. </td>
  1626. </tr>
  1627. </tbody>
  1628. </table>
  1629. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1630. </h3>
  1631. <p>
  1632. (<em>Appears on:</em>
  1633. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1634. </p>
  1635. <p>
  1636. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1637. </p>
  1638. <table>
  1639. <thead>
  1640. <tr>
  1641. <th>Field</th>
  1642. <th>Description</th>
  1643. </tr>
  1644. </thead>
  1645. <tbody>
  1646. <tr>
  1647. <td>
  1648. <code>accessKeyIDSecretRef</code></br>
  1649. <em>
  1650. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1651. External Secrets meta/v1.SecretKeySelector
  1652. </a>
  1653. </em>
  1654. </td>
  1655. <td>
  1656. <p>The AccessKeyID is used for authentication</p>
  1657. </td>
  1658. </tr>
  1659. <tr>
  1660. <td>
  1661. <code>accessKeySecretSecretRef</code></br>
  1662. <em>
  1663. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1664. External Secrets meta/v1.SecretKeySelector
  1665. </a>
  1666. </em>
  1667. </td>
  1668. <td>
  1669. <p>The AccessKeySecret is used for authentication</p>
  1670. </td>
  1671. </tr>
  1672. </tbody>
  1673. </table>
  1674. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1675. </h3>
  1676. <p>
  1677. (<em>Appears on:</em>
  1678. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1679. </p>
  1680. <p>
  1681. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1682. </p>
  1683. <table>
  1684. <thead>
  1685. <tr>
  1686. <th>Field</th>
  1687. <th>Description</th>
  1688. </tr>
  1689. </thead>
  1690. <tbody>
  1691. <tr>
  1692. <td>
  1693. <code>auth</code></br>
  1694. <em>
  1695. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1696. AlibabaAuth
  1697. </a>
  1698. </em>
  1699. </td>
  1700. <td>
  1701. </td>
  1702. </tr>
  1703. <tr>
  1704. <td>
  1705. <code>regionID</code></br>
  1706. <em>
  1707. string
  1708. </em>
  1709. </td>
  1710. <td>
  1711. <p>Alibaba Region to be used for the provider</p>
  1712. </td>
  1713. </tr>
  1714. </tbody>
  1715. </table>
  1716. <h3 id="external-secrets.io/v1beta1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1717. </h3>
  1718. <p>
  1719. (<em>Appears on:</em>
  1720. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1721. </p>
  1722. <p>
  1723. <p>Authenticate against Alibaba using RRSA.</p>
  1724. </p>
  1725. <table>
  1726. <thead>
  1727. <tr>
  1728. <th>Field</th>
  1729. <th>Description</th>
  1730. </tr>
  1731. </thead>
  1732. <tbody>
  1733. <tr>
  1734. <td>
  1735. <code>oidcProviderArn</code></br>
  1736. <em>
  1737. string
  1738. </em>
  1739. </td>
  1740. <td>
  1741. </td>
  1742. </tr>
  1743. <tr>
  1744. <td>
  1745. <code>oidcTokenFilePath</code></br>
  1746. <em>
  1747. string
  1748. </em>
  1749. </td>
  1750. <td>
  1751. </td>
  1752. </tr>
  1753. <tr>
  1754. <td>
  1755. <code>roleArn</code></br>
  1756. <em>
  1757. string
  1758. </em>
  1759. </td>
  1760. <td>
  1761. </td>
  1762. </tr>
  1763. <tr>
  1764. <td>
  1765. <code>sessionName</code></br>
  1766. <em>
  1767. string
  1768. </em>
  1769. </td>
  1770. <td>
  1771. </td>
  1772. </tr>
  1773. </tbody>
  1774. </table>
  1775. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1776. (<code>string</code> alias)</p></h3>
  1777. <p>
  1778. (<em>Appears on:</em>
  1779. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1780. </p>
  1781. <p>
  1782. <p>AuthType describes how to authenticate to the Azure Keyvault
  1783. Only one of the following auth types may be specified.
  1784. If none of the following auth type is specified, the default one
  1785. is ServicePrincipal.</p>
  1786. </p>
  1787. <table>
  1788. <thead>
  1789. <tr>
  1790. <th>Value</th>
  1791. <th>Description</th>
  1792. </tr>
  1793. </thead>
  1794. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1795. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1796. </td>
  1797. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1798. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1799. </td>
  1800. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1801. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1802. </td>
  1803. </tr></tbody>
  1804. </table>
  1805. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1806. (<code>string</code> alias)</p></h3>
  1807. <p>
  1808. (<em>Appears on:</em>
  1809. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1810. </p>
  1811. <p>
  1812. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1813. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1814. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1815. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1816. </p>
  1817. <table>
  1818. <thead>
  1819. <tr>
  1820. <th>Value</th>
  1821. <th>Description</th>
  1822. </tr>
  1823. </thead>
  1824. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1825. <td></td>
  1826. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1827. <td></td>
  1828. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1829. <td></td>
  1830. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1831. <td></td>
  1832. </tr></tbody>
  1833. </table>
  1834. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1835. </h3>
  1836. <p>
  1837. (<em>Appears on:</em>
  1838. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1839. </p>
  1840. <p>
  1841. <p>Configuration used to authenticate with Azure.</p>
  1842. </p>
  1843. <table>
  1844. <thead>
  1845. <tr>
  1846. <th>Field</th>
  1847. <th>Description</th>
  1848. </tr>
  1849. </thead>
  1850. <tbody>
  1851. <tr>
  1852. <td>
  1853. <code>clientId</code></br>
  1854. <em>
  1855. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1856. External Secrets meta/v1.SecretKeySelector
  1857. </a>
  1858. </em>
  1859. </td>
  1860. <td>
  1861. <em>(Optional)</em>
  1862. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  1863. </td>
  1864. </tr>
  1865. <tr>
  1866. <td>
  1867. <code>tenantId</code></br>
  1868. <em>
  1869. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1870. External Secrets meta/v1.SecretKeySelector
  1871. </a>
  1872. </em>
  1873. </td>
  1874. <td>
  1875. <em>(Optional)</em>
  1876. <p>The Azure tenantId of the managed identity used for authentication.</p>
  1877. </td>
  1878. </tr>
  1879. <tr>
  1880. <td>
  1881. <code>clientSecret</code></br>
  1882. <em>
  1883. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1884. External Secrets meta/v1.SecretKeySelector
  1885. </a>
  1886. </em>
  1887. </td>
  1888. <td>
  1889. <em>(Optional)</em>
  1890. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1891. </td>
  1892. </tr>
  1893. </tbody>
  1894. </table>
  1895. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1896. </h3>
  1897. <p>
  1898. (<em>Appears on:</em>
  1899. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1900. </p>
  1901. <p>
  1902. <p>Configures an store to sync secrets using Azure KV.</p>
  1903. </p>
  1904. <table>
  1905. <thead>
  1906. <tr>
  1907. <th>Field</th>
  1908. <th>Description</th>
  1909. </tr>
  1910. </thead>
  1911. <tbody>
  1912. <tr>
  1913. <td>
  1914. <code>authType</code></br>
  1915. <em>
  1916. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1917. AzureAuthType
  1918. </a>
  1919. </em>
  1920. </td>
  1921. <td>
  1922. <em>(Optional)</em>
  1923. <p>Auth type defines how to authenticate to the keyvault service.
  1924. Valid values are:
  1925. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1926. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1927. </td>
  1928. </tr>
  1929. <tr>
  1930. <td>
  1931. <code>vaultUrl</code></br>
  1932. <em>
  1933. string
  1934. </em>
  1935. </td>
  1936. <td>
  1937. <p>Vault Url from which the secrets to be fetched from.</p>
  1938. </td>
  1939. </tr>
  1940. <tr>
  1941. <td>
  1942. <code>tenantId</code></br>
  1943. <em>
  1944. string
  1945. </em>
  1946. </td>
  1947. <td>
  1948. <em>(Optional)</em>
  1949. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  1950. </td>
  1951. </tr>
  1952. <tr>
  1953. <td>
  1954. <code>environmentType</code></br>
  1955. <em>
  1956. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1957. AzureEnvironmentType
  1958. </a>
  1959. </em>
  1960. </td>
  1961. <td>
  1962. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1963. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1964. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1965. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1966. </td>
  1967. </tr>
  1968. <tr>
  1969. <td>
  1970. <code>authSecretRef</code></br>
  1971. <em>
  1972. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1973. AzureKVAuth
  1974. </a>
  1975. </em>
  1976. </td>
  1977. <td>
  1978. <em>(Optional)</em>
  1979. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  1980. </td>
  1981. </tr>
  1982. <tr>
  1983. <td>
  1984. <code>serviceAccountRef</code></br>
  1985. <em>
  1986. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1987. External Secrets meta/v1.ServiceAccountSelector
  1988. </a>
  1989. </em>
  1990. </td>
  1991. <td>
  1992. <em>(Optional)</em>
  1993. <p>ServiceAccountRef specified the service account
  1994. that should be used when authenticating with WorkloadIdentity.</p>
  1995. </td>
  1996. </tr>
  1997. <tr>
  1998. <td>
  1999. <code>identityId</code></br>
  2000. <em>
  2001. string
  2002. </em>
  2003. </td>
  2004. <td>
  2005. <em>(Optional)</em>
  2006. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2007. </td>
  2008. </tr>
  2009. </tbody>
  2010. </table>
  2011. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  2012. </h3>
  2013. <p>
  2014. (<em>Appears on:</em>
  2015. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>,
  2016. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>,
  2017. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  2018. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  2019. </p>
  2020. <p>
  2021. <p>Used to provide custom certificate authority (CA) certificates
  2022. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2023. that contains a PEM-encoded certificate.</p>
  2024. </p>
  2025. <table>
  2026. <thead>
  2027. <tr>
  2028. <th>Field</th>
  2029. <th>Description</th>
  2030. </tr>
  2031. </thead>
  2032. <tbody>
  2033. <tr>
  2034. <td>
  2035. <code>type</code></br>
  2036. <em>
  2037. <a href="#external-secrets.io/v1beta1.CAProviderType">
  2038. CAProviderType
  2039. </a>
  2040. </em>
  2041. </td>
  2042. <td>
  2043. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2044. </td>
  2045. </tr>
  2046. <tr>
  2047. <td>
  2048. <code>name</code></br>
  2049. <em>
  2050. string
  2051. </em>
  2052. </td>
  2053. <td>
  2054. <p>The name of the object located at the provider type.</p>
  2055. </td>
  2056. </tr>
  2057. <tr>
  2058. <td>
  2059. <code>key</code></br>
  2060. <em>
  2061. string
  2062. </em>
  2063. </td>
  2064. <td>
  2065. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2066. </td>
  2067. </tr>
  2068. <tr>
  2069. <td>
  2070. <code>namespace</code></br>
  2071. <em>
  2072. string
  2073. </em>
  2074. </td>
  2075. <td>
  2076. <em>(Optional)</em>
  2077. <p>The namespace the Provider type is in.
  2078. Can only be defined when used in a ClusterSecretStore.</p>
  2079. </td>
  2080. </tr>
  2081. </tbody>
  2082. </table>
  2083. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  2084. (<code>string</code> alias)</p></h3>
  2085. <p>
  2086. (<em>Appears on:</em>
  2087. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  2088. </p>
  2089. <p>
  2090. </p>
  2091. <table>
  2092. <thead>
  2093. <tr>
  2094. <th>Value</th>
  2095. <th>Description</th>
  2096. </tr>
  2097. </thead>
  2098. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2099. <td></td>
  2100. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2101. <td></td>
  2102. </tr></tbody>
  2103. </table>
  2104. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  2105. </h3>
  2106. <p>
  2107. (<em>Appears on:</em>
  2108. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  2109. </p>
  2110. <p>
  2111. </p>
  2112. <table>
  2113. <thead>
  2114. <tr>
  2115. <th>Field</th>
  2116. <th>Description</th>
  2117. </tr>
  2118. </thead>
  2119. <tbody>
  2120. <tr>
  2121. <td>
  2122. <code>clientCert</code></br>
  2123. <em>
  2124. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2125. External Secrets meta/v1.SecretKeySelector
  2126. </a>
  2127. </em>
  2128. </td>
  2129. <td>
  2130. </td>
  2131. </tr>
  2132. <tr>
  2133. <td>
  2134. <code>clientKey</code></br>
  2135. <em>
  2136. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2137. External Secrets meta/v1.SecretKeySelector
  2138. </a>
  2139. </em>
  2140. </td>
  2141. <td>
  2142. </td>
  2143. </tr>
  2144. </tbody>
  2145. </table>
  2146. <h3 id="external-secrets.io/v1beta1.ChefAuth">ChefAuth
  2147. </h3>
  2148. <p>
  2149. (<em>Appears on:</em>
  2150. <a href="#external-secrets.io/v1beta1.ChefProvider">ChefProvider</a>)
  2151. </p>
  2152. <p>
  2153. <p>ChefAuth contains a secretRef for credentials.</p>
  2154. </p>
  2155. <table>
  2156. <thead>
  2157. <tr>
  2158. <th>Field</th>
  2159. <th>Description</th>
  2160. </tr>
  2161. </thead>
  2162. <tbody>
  2163. <tr>
  2164. <td>
  2165. <code>secretRef</code></br>
  2166. <em>
  2167. <a href="#external-secrets.io/v1beta1.ChefAuthSecretRef">
  2168. ChefAuthSecretRef
  2169. </a>
  2170. </em>
  2171. </td>
  2172. <td>
  2173. </td>
  2174. </tr>
  2175. </tbody>
  2176. </table>
  2177. <h3 id="external-secrets.io/v1beta1.ChefAuthSecretRef">ChefAuthSecretRef
  2178. </h3>
  2179. <p>
  2180. (<em>Appears on:</em>
  2181. <a href="#external-secrets.io/v1beta1.ChefAuth">ChefAuth</a>)
  2182. </p>
  2183. <p>
  2184. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2185. </p>
  2186. <table>
  2187. <thead>
  2188. <tr>
  2189. <th>Field</th>
  2190. <th>Description</th>
  2191. </tr>
  2192. </thead>
  2193. <tbody>
  2194. <tr>
  2195. <td>
  2196. <code>privateKeySecretRef</code></br>
  2197. <em>
  2198. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2199. External Secrets meta/v1.SecretKeySelector
  2200. </a>
  2201. </em>
  2202. </td>
  2203. <td>
  2204. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2205. </td>
  2206. </tr>
  2207. </tbody>
  2208. </table>
  2209. <h3 id="external-secrets.io/v1beta1.ChefProvider">ChefProvider
  2210. </h3>
  2211. <p>
  2212. (<em>Appears on:</em>
  2213. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2214. </p>
  2215. <p>
  2216. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2217. </p>
  2218. <table>
  2219. <thead>
  2220. <tr>
  2221. <th>Field</th>
  2222. <th>Description</th>
  2223. </tr>
  2224. </thead>
  2225. <tbody>
  2226. <tr>
  2227. <td>
  2228. <code>auth</code></br>
  2229. <em>
  2230. <a href="#external-secrets.io/v1beta1.ChefAuth">
  2231. ChefAuth
  2232. </a>
  2233. </em>
  2234. </td>
  2235. <td>
  2236. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2237. </td>
  2238. </tr>
  2239. <tr>
  2240. <td>
  2241. <code>username</code></br>
  2242. <em>
  2243. string
  2244. </em>
  2245. </td>
  2246. <td>
  2247. <p>UserName should be the user ID on the chef server</p>
  2248. </td>
  2249. </tr>
  2250. <tr>
  2251. <td>
  2252. <code>serverUrl</code></br>
  2253. <em>
  2254. string
  2255. </em>
  2256. </td>
  2257. <td>
  2258. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2259. </td>
  2260. </tr>
  2261. </tbody>
  2262. </table>
  2263. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  2264. </h3>
  2265. <p>
  2266. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  2267. </p>
  2268. <table>
  2269. <thead>
  2270. <tr>
  2271. <th>Field</th>
  2272. <th>Description</th>
  2273. </tr>
  2274. </thead>
  2275. <tbody>
  2276. <tr>
  2277. <td>
  2278. <code>metadata</code></br>
  2279. <em>
  2280. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2281. Kubernetes meta/v1.ObjectMeta
  2282. </a>
  2283. </em>
  2284. </td>
  2285. <td>
  2286. Refer to the Kubernetes API documentation for the fields of the
  2287. <code>metadata</code> field.
  2288. </td>
  2289. </tr>
  2290. <tr>
  2291. <td>
  2292. <code>spec</code></br>
  2293. <em>
  2294. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  2295. ClusterExternalSecretSpec
  2296. </a>
  2297. </em>
  2298. </td>
  2299. <td>
  2300. <br/>
  2301. <br/>
  2302. <table>
  2303. <tr>
  2304. <td>
  2305. <code>externalSecretSpec</code></br>
  2306. <em>
  2307. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2308. ExternalSecretSpec
  2309. </a>
  2310. </em>
  2311. </td>
  2312. <td>
  2313. <p>The spec for the ExternalSecrets to be created</p>
  2314. </td>
  2315. </tr>
  2316. <tr>
  2317. <td>
  2318. <code>externalSecretName</code></br>
  2319. <em>
  2320. string
  2321. </em>
  2322. </td>
  2323. <td>
  2324. <em>(Optional)</em>
  2325. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2326. </td>
  2327. </tr>
  2328. <tr>
  2329. <td>
  2330. <code>externalSecretMetadata</code></br>
  2331. <em>
  2332. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2333. ExternalSecretMetadata
  2334. </a>
  2335. </em>
  2336. </td>
  2337. <td>
  2338. <em>(Optional)</em>
  2339. <p>The metadata of the external secrets to be created</p>
  2340. </td>
  2341. </tr>
  2342. <tr>
  2343. <td>
  2344. <code>namespaceSelector</code></br>
  2345. <em>
  2346. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2347. Kubernetes meta/v1.LabelSelector
  2348. </a>
  2349. </em>
  2350. </td>
  2351. <td>
  2352. <em>(Optional)</em>
  2353. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2354. Deprecated: Use NamespaceSelectors instead.</p>
  2355. </td>
  2356. </tr>
  2357. <tr>
  2358. <td>
  2359. <code>namespaceSelectors</code></br>
  2360. <em>
  2361. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2362. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2363. </a>
  2364. </em>
  2365. </td>
  2366. <td>
  2367. <em>(Optional)</em>
  2368. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2369. </td>
  2370. </tr>
  2371. <tr>
  2372. <td>
  2373. <code>namespaces</code></br>
  2374. <em>
  2375. []string
  2376. </em>
  2377. </td>
  2378. <td>
  2379. <em>(Optional)</em>
  2380. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.</p>
  2381. </td>
  2382. </tr>
  2383. <tr>
  2384. <td>
  2385. <code>refreshTime</code></br>
  2386. <em>
  2387. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2388. Kubernetes meta/v1.Duration
  2389. </a>
  2390. </em>
  2391. </td>
  2392. <td>
  2393. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2394. </td>
  2395. </tr>
  2396. </table>
  2397. </td>
  2398. </tr>
  2399. <tr>
  2400. <td>
  2401. <code>status</code></br>
  2402. <em>
  2403. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  2404. ClusterExternalSecretStatus
  2405. </a>
  2406. </em>
  2407. </td>
  2408. <td>
  2409. </td>
  2410. </tr>
  2411. </tbody>
  2412. </table>
  2413. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  2414. (<code>string</code> alias)</p></h3>
  2415. <p>
  2416. (<em>Appears on:</em>
  2417. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  2418. </p>
  2419. <p>
  2420. </p>
  2421. <table>
  2422. <thead>
  2423. <tr>
  2424. <th>Value</th>
  2425. <th>Description</th>
  2426. </tr>
  2427. </thead>
  2428. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  2429. <td></td>
  2430. </tr></tbody>
  2431. </table>
  2432. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  2433. </h3>
  2434. <p>
  2435. (<em>Appears on:</em>
  2436. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2437. </p>
  2438. <p>
  2439. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  2440. </p>
  2441. <table>
  2442. <thead>
  2443. <tr>
  2444. <th>Field</th>
  2445. <th>Description</th>
  2446. </tr>
  2447. </thead>
  2448. <tbody>
  2449. <tr>
  2450. <td>
  2451. <code>namespace</code></br>
  2452. <em>
  2453. string
  2454. </em>
  2455. </td>
  2456. <td>
  2457. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  2458. </td>
  2459. </tr>
  2460. <tr>
  2461. <td>
  2462. <code>reason</code></br>
  2463. <em>
  2464. string
  2465. </em>
  2466. </td>
  2467. <td>
  2468. <em>(Optional)</em>
  2469. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  2470. </td>
  2471. </tr>
  2472. </tbody>
  2473. </table>
  2474. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  2475. </h3>
  2476. <p>
  2477. (<em>Appears on:</em>
  2478. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2479. </p>
  2480. <p>
  2481. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  2482. </p>
  2483. <table>
  2484. <thead>
  2485. <tr>
  2486. <th>Field</th>
  2487. <th>Description</th>
  2488. </tr>
  2489. </thead>
  2490. <tbody>
  2491. <tr>
  2492. <td>
  2493. <code>externalSecretSpec</code></br>
  2494. <em>
  2495. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2496. ExternalSecretSpec
  2497. </a>
  2498. </em>
  2499. </td>
  2500. <td>
  2501. <p>The spec for the ExternalSecrets to be created</p>
  2502. </td>
  2503. </tr>
  2504. <tr>
  2505. <td>
  2506. <code>externalSecretName</code></br>
  2507. <em>
  2508. string
  2509. </em>
  2510. </td>
  2511. <td>
  2512. <em>(Optional)</em>
  2513. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  2514. </td>
  2515. </tr>
  2516. <tr>
  2517. <td>
  2518. <code>externalSecretMetadata</code></br>
  2519. <em>
  2520. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadata">
  2521. ExternalSecretMetadata
  2522. </a>
  2523. </em>
  2524. </td>
  2525. <td>
  2526. <em>(Optional)</em>
  2527. <p>The metadata of the external secrets to be created</p>
  2528. </td>
  2529. </tr>
  2530. <tr>
  2531. <td>
  2532. <code>namespaceSelector</code></br>
  2533. <em>
  2534. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2535. Kubernetes meta/v1.LabelSelector
  2536. </a>
  2537. </em>
  2538. </td>
  2539. <td>
  2540. <em>(Optional)</em>
  2541. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  2542. Deprecated: Use NamespaceSelectors instead.</p>
  2543. </td>
  2544. </tr>
  2545. <tr>
  2546. <td>
  2547. <code>namespaceSelectors</code></br>
  2548. <em>
  2549. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  2550. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  2551. </a>
  2552. </em>
  2553. </td>
  2554. <td>
  2555. <em>(Optional)</em>
  2556. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  2557. </td>
  2558. </tr>
  2559. <tr>
  2560. <td>
  2561. <code>namespaces</code></br>
  2562. <em>
  2563. []string
  2564. </em>
  2565. </td>
  2566. <td>
  2567. <em>(Optional)</em>
  2568. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.</p>
  2569. </td>
  2570. </tr>
  2571. <tr>
  2572. <td>
  2573. <code>refreshTime</code></br>
  2574. <em>
  2575. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  2576. Kubernetes meta/v1.Duration
  2577. </a>
  2578. </em>
  2579. </td>
  2580. <td>
  2581. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  2582. </td>
  2583. </tr>
  2584. </tbody>
  2585. </table>
  2586. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  2587. </h3>
  2588. <p>
  2589. (<em>Appears on:</em>
  2590. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  2591. </p>
  2592. <p>
  2593. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  2594. </p>
  2595. <table>
  2596. <thead>
  2597. <tr>
  2598. <th>Field</th>
  2599. <th>Description</th>
  2600. </tr>
  2601. </thead>
  2602. <tbody>
  2603. <tr>
  2604. <td>
  2605. <code>externalSecretName</code></br>
  2606. <em>
  2607. string
  2608. </em>
  2609. </td>
  2610. <td>
  2611. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  2612. </td>
  2613. </tr>
  2614. <tr>
  2615. <td>
  2616. <code>failedNamespaces</code></br>
  2617. <em>
  2618. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  2619. []ClusterExternalSecretNamespaceFailure
  2620. </a>
  2621. </em>
  2622. </td>
  2623. <td>
  2624. <em>(Optional)</em>
  2625. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  2626. </td>
  2627. </tr>
  2628. <tr>
  2629. <td>
  2630. <code>provisionedNamespaces</code></br>
  2631. <em>
  2632. []string
  2633. </em>
  2634. </td>
  2635. <td>
  2636. <em>(Optional)</em>
  2637. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  2638. </td>
  2639. </tr>
  2640. <tr>
  2641. <td>
  2642. <code>conditions</code></br>
  2643. <em>
  2644. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  2645. []ClusterExternalSecretStatusCondition
  2646. </a>
  2647. </em>
  2648. </td>
  2649. <td>
  2650. <em>(Optional)</em>
  2651. </td>
  2652. </tr>
  2653. </tbody>
  2654. </table>
  2655. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  2656. </h3>
  2657. <p>
  2658. (<em>Appears on:</em>
  2659. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  2660. </p>
  2661. <p>
  2662. </p>
  2663. <table>
  2664. <thead>
  2665. <tr>
  2666. <th>Field</th>
  2667. <th>Description</th>
  2668. </tr>
  2669. </thead>
  2670. <tbody>
  2671. <tr>
  2672. <td>
  2673. <code>type</code></br>
  2674. <em>
  2675. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  2676. ClusterExternalSecretConditionType
  2677. </a>
  2678. </em>
  2679. </td>
  2680. <td>
  2681. </td>
  2682. </tr>
  2683. <tr>
  2684. <td>
  2685. <code>status</code></br>
  2686. <em>
  2687. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  2688. Kubernetes core/v1.ConditionStatus
  2689. </a>
  2690. </em>
  2691. </td>
  2692. <td>
  2693. </td>
  2694. </tr>
  2695. <tr>
  2696. <td>
  2697. <code>message</code></br>
  2698. <em>
  2699. string
  2700. </em>
  2701. </td>
  2702. <td>
  2703. <em>(Optional)</em>
  2704. </td>
  2705. </tr>
  2706. </tbody>
  2707. </table>
  2708. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2709. </h3>
  2710. <p>
  2711. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2712. </p>
  2713. <table>
  2714. <thead>
  2715. <tr>
  2716. <th>Field</th>
  2717. <th>Description</th>
  2718. </tr>
  2719. </thead>
  2720. <tbody>
  2721. <tr>
  2722. <td>
  2723. <code>metadata</code></br>
  2724. <em>
  2725. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  2726. Kubernetes meta/v1.ObjectMeta
  2727. </a>
  2728. </em>
  2729. </td>
  2730. <td>
  2731. Refer to the Kubernetes API documentation for the fields of the
  2732. <code>metadata</code> field.
  2733. </td>
  2734. </tr>
  2735. <tr>
  2736. <td>
  2737. <code>spec</code></br>
  2738. <em>
  2739. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2740. SecretStoreSpec
  2741. </a>
  2742. </em>
  2743. </td>
  2744. <td>
  2745. <br/>
  2746. <br/>
  2747. <table>
  2748. <tr>
  2749. <td>
  2750. <code>controller</code></br>
  2751. <em>
  2752. string
  2753. </em>
  2754. </td>
  2755. <td>
  2756. <em>(Optional)</em>
  2757. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  2758. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  2759. </td>
  2760. </tr>
  2761. <tr>
  2762. <td>
  2763. <code>provider</code></br>
  2764. <em>
  2765. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2766. SecretStoreProvider
  2767. </a>
  2768. </em>
  2769. </td>
  2770. <td>
  2771. <p>Used to configure the provider. Only one provider may be set</p>
  2772. </td>
  2773. </tr>
  2774. <tr>
  2775. <td>
  2776. <code>retrySettings</code></br>
  2777. <em>
  2778. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2779. SecretStoreRetrySettings
  2780. </a>
  2781. </em>
  2782. </td>
  2783. <td>
  2784. <em>(Optional)</em>
  2785. <p>Used to configure http retries if failed</p>
  2786. </td>
  2787. </tr>
  2788. <tr>
  2789. <td>
  2790. <code>refreshInterval</code></br>
  2791. <em>
  2792. int
  2793. </em>
  2794. </td>
  2795. <td>
  2796. <em>(Optional)</em>
  2797. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2798. </td>
  2799. </tr>
  2800. <tr>
  2801. <td>
  2802. <code>conditions</code></br>
  2803. <em>
  2804. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2805. []ClusterSecretStoreCondition
  2806. </a>
  2807. </em>
  2808. </td>
  2809. <td>
  2810. <em>(Optional)</em>
  2811. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2812. </td>
  2813. </tr>
  2814. </table>
  2815. </td>
  2816. </tr>
  2817. <tr>
  2818. <td>
  2819. <code>status</code></br>
  2820. <em>
  2821. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2822. SecretStoreStatus
  2823. </a>
  2824. </em>
  2825. </td>
  2826. <td>
  2827. </td>
  2828. </tr>
  2829. </tbody>
  2830. </table>
  2831. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2832. </h3>
  2833. <p>
  2834. (<em>Appears on:</em>
  2835. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2836. </p>
  2837. <p>
  2838. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2839. for a ClusterSecretStore instance.</p>
  2840. </p>
  2841. <table>
  2842. <thead>
  2843. <tr>
  2844. <th>Field</th>
  2845. <th>Description</th>
  2846. </tr>
  2847. </thead>
  2848. <tbody>
  2849. <tr>
  2850. <td>
  2851. <code>namespaceSelector</code></br>
  2852. <em>
  2853. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  2854. Kubernetes meta/v1.LabelSelector
  2855. </a>
  2856. </em>
  2857. </td>
  2858. <td>
  2859. <em>(Optional)</em>
  2860. <p>Choose namespace using a labelSelector</p>
  2861. </td>
  2862. </tr>
  2863. <tr>
  2864. <td>
  2865. <code>namespaces</code></br>
  2866. <em>
  2867. []string
  2868. </em>
  2869. </td>
  2870. <td>
  2871. <p>Choose namespaces by name</p>
  2872. </td>
  2873. </tr>
  2874. </tbody>
  2875. </table>
  2876. <h3 id="external-secrets.io/v1beta1.ConjurAPIKey">ConjurAPIKey
  2877. </h3>
  2878. <p>
  2879. (<em>Appears on:</em>
  2880. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2881. </p>
  2882. <p>
  2883. </p>
  2884. <table>
  2885. <thead>
  2886. <tr>
  2887. <th>Field</th>
  2888. <th>Description</th>
  2889. </tr>
  2890. </thead>
  2891. <tbody>
  2892. <tr>
  2893. <td>
  2894. <code>account</code></br>
  2895. <em>
  2896. string
  2897. </em>
  2898. </td>
  2899. <td>
  2900. </td>
  2901. </tr>
  2902. <tr>
  2903. <td>
  2904. <code>userRef</code></br>
  2905. <em>
  2906. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2907. External Secrets meta/v1.SecretKeySelector
  2908. </a>
  2909. </em>
  2910. </td>
  2911. <td>
  2912. </td>
  2913. </tr>
  2914. <tr>
  2915. <td>
  2916. <code>apiKeyRef</code></br>
  2917. <em>
  2918. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2919. External Secrets meta/v1.SecretKeySelector
  2920. </a>
  2921. </em>
  2922. </td>
  2923. <td>
  2924. </td>
  2925. </tr>
  2926. </tbody>
  2927. </table>
  2928. <h3 id="external-secrets.io/v1beta1.ConjurAuth">ConjurAuth
  2929. </h3>
  2930. <p>
  2931. (<em>Appears on:</em>
  2932. <a href="#external-secrets.io/v1beta1.ConjurProvider">ConjurProvider</a>)
  2933. </p>
  2934. <p>
  2935. </p>
  2936. <table>
  2937. <thead>
  2938. <tr>
  2939. <th>Field</th>
  2940. <th>Description</th>
  2941. </tr>
  2942. </thead>
  2943. <tbody>
  2944. <tr>
  2945. <td>
  2946. <code>apikey</code></br>
  2947. <em>
  2948. <a href="#external-secrets.io/v1beta1.ConjurAPIKey">
  2949. ConjurAPIKey
  2950. </a>
  2951. </em>
  2952. </td>
  2953. <td>
  2954. <em>(Optional)</em>
  2955. </td>
  2956. </tr>
  2957. <tr>
  2958. <td>
  2959. <code>jwt</code></br>
  2960. <em>
  2961. <a href="#external-secrets.io/v1beta1.ConjurJWT">
  2962. ConjurJWT
  2963. </a>
  2964. </em>
  2965. </td>
  2966. <td>
  2967. <em>(Optional)</em>
  2968. </td>
  2969. </tr>
  2970. </tbody>
  2971. </table>
  2972. <h3 id="external-secrets.io/v1beta1.ConjurJWT">ConjurJWT
  2973. </h3>
  2974. <p>
  2975. (<em>Appears on:</em>
  2976. <a href="#external-secrets.io/v1beta1.ConjurAuth">ConjurAuth</a>)
  2977. </p>
  2978. <p>
  2979. </p>
  2980. <table>
  2981. <thead>
  2982. <tr>
  2983. <th>Field</th>
  2984. <th>Description</th>
  2985. </tr>
  2986. </thead>
  2987. <tbody>
  2988. <tr>
  2989. <td>
  2990. <code>account</code></br>
  2991. <em>
  2992. string
  2993. </em>
  2994. </td>
  2995. <td>
  2996. </td>
  2997. </tr>
  2998. <tr>
  2999. <td>
  3000. <code>serviceID</code></br>
  3001. <em>
  3002. string
  3003. </em>
  3004. </td>
  3005. <td>
  3006. <p>The conjur authn jwt webservice id</p>
  3007. </td>
  3008. </tr>
  3009. <tr>
  3010. <td>
  3011. <code>hostId</code></br>
  3012. <em>
  3013. string
  3014. </em>
  3015. </td>
  3016. <td>
  3017. <em>(Optional)</em>
  3018. <p>Optional HostID for JWT authentication. This may be used depending
  3019. on how the Conjur JWT authenticator policy is configured.</p>
  3020. </td>
  3021. </tr>
  3022. <tr>
  3023. <td>
  3024. <code>secretRef</code></br>
  3025. <em>
  3026. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3027. External Secrets meta/v1.SecretKeySelector
  3028. </a>
  3029. </em>
  3030. </td>
  3031. <td>
  3032. <em>(Optional)</em>
  3033. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3034. authenticate with Conjur using the JWT authentication method.</p>
  3035. </td>
  3036. </tr>
  3037. <tr>
  3038. <td>
  3039. <code>serviceAccountRef</code></br>
  3040. <em>
  3041. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3042. External Secrets meta/v1.ServiceAccountSelector
  3043. </a>
  3044. </em>
  3045. </td>
  3046. <td>
  3047. <em>(Optional)</em>
  3048. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3049. a token for with the <code>TokenRequest</code> API.</p>
  3050. </td>
  3051. </tr>
  3052. </tbody>
  3053. </table>
  3054. <h3 id="external-secrets.io/v1beta1.ConjurProvider">ConjurProvider
  3055. </h3>
  3056. <p>
  3057. (<em>Appears on:</em>
  3058. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3059. </p>
  3060. <p>
  3061. </p>
  3062. <table>
  3063. <thead>
  3064. <tr>
  3065. <th>Field</th>
  3066. <th>Description</th>
  3067. </tr>
  3068. </thead>
  3069. <tbody>
  3070. <tr>
  3071. <td>
  3072. <code>url</code></br>
  3073. <em>
  3074. string
  3075. </em>
  3076. </td>
  3077. <td>
  3078. </td>
  3079. </tr>
  3080. <tr>
  3081. <td>
  3082. <code>caBundle</code></br>
  3083. <em>
  3084. string
  3085. </em>
  3086. </td>
  3087. <td>
  3088. <em>(Optional)</em>
  3089. </td>
  3090. </tr>
  3091. <tr>
  3092. <td>
  3093. <code>caProvider</code></br>
  3094. <em>
  3095. <a href="#external-secrets.io/v1beta1.CAProvider">
  3096. CAProvider
  3097. </a>
  3098. </em>
  3099. </td>
  3100. <td>
  3101. <em>(Optional)</em>
  3102. </td>
  3103. </tr>
  3104. <tr>
  3105. <td>
  3106. <code>auth</code></br>
  3107. <em>
  3108. <a href="#external-secrets.io/v1beta1.ConjurAuth">
  3109. ConjurAuth
  3110. </a>
  3111. </em>
  3112. </td>
  3113. <td>
  3114. </td>
  3115. </tr>
  3116. </tbody>
  3117. </table>
  3118. <h3 id="external-secrets.io/v1beta1.DelineaProvider">DelineaProvider
  3119. </h3>
  3120. <p>
  3121. (<em>Appears on:</em>
  3122. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3123. </p>
  3124. <p>
  3125. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3126. </p>
  3127. <table>
  3128. <thead>
  3129. <tr>
  3130. <th>Field</th>
  3131. <th>Description</th>
  3132. </tr>
  3133. </thead>
  3134. <tbody>
  3135. <tr>
  3136. <td>
  3137. <code>clientId</code></br>
  3138. <em>
  3139. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3140. DelineaProviderSecretRef
  3141. </a>
  3142. </em>
  3143. </td>
  3144. <td>
  3145. <p>ClientID is the non-secret part of the credential.</p>
  3146. </td>
  3147. </tr>
  3148. <tr>
  3149. <td>
  3150. <code>clientSecret</code></br>
  3151. <em>
  3152. <a href="#external-secrets.io/v1beta1.DelineaProviderSecretRef">
  3153. DelineaProviderSecretRef
  3154. </a>
  3155. </em>
  3156. </td>
  3157. <td>
  3158. <p>ClientSecret is the secret part of the credential.</p>
  3159. </td>
  3160. </tr>
  3161. <tr>
  3162. <td>
  3163. <code>tenant</code></br>
  3164. <em>
  3165. string
  3166. </em>
  3167. </td>
  3168. <td>
  3169. <p>Tenant is the chosen hostname / site name.</p>
  3170. </td>
  3171. </tr>
  3172. <tr>
  3173. <td>
  3174. <code>urlTemplate</code></br>
  3175. <em>
  3176. string
  3177. </em>
  3178. </td>
  3179. <td>
  3180. <em>(Optional)</em>
  3181. <p>URLTemplate
  3182. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3183. </td>
  3184. </tr>
  3185. <tr>
  3186. <td>
  3187. <code>tld</code></br>
  3188. <em>
  3189. string
  3190. </em>
  3191. </td>
  3192. <td>
  3193. <em>(Optional)</em>
  3194. <p>TLD is based on the server location that was chosen during provisioning.
  3195. If unset, defaults to &ldquo;com&rdquo;.</p>
  3196. </td>
  3197. </tr>
  3198. </tbody>
  3199. </table>
  3200. <h3 id="external-secrets.io/v1beta1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3201. </h3>
  3202. <p>
  3203. (<em>Appears on:</em>
  3204. <a href="#external-secrets.io/v1beta1.DelineaProvider">DelineaProvider</a>)
  3205. </p>
  3206. <p>
  3207. </p>
  3208. <table>
  3209. <thead>
  3210. <tr>
  3211. <th>Field</th>
  3212. <th>Description</th>
  3213. </tr>
  3214. </thead>
  3215. <tbody>
  3216. <tr>
  3217. <td>
  3218. <code>value</code></br>
  3219. <em>
  3220. string
  3221. </em>
  3222. </td>
  3223. <td>
  3224. <em>(Optional)</em>
  3225. <p>Value can be specified directly to set a value without using a secret.</p>
  3226. </td>
  3227. </tr>
  3228. <tr>
  3229. <td>
  3230. <code>secretRef</code></br>
  3231. <em>
  3232. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3233. External Secrets meta/v1.SecretKeySelector
  3234. </a>
  3235. </em>
  3236. </td>
  3237. <td>
  3238. <em>(Optional)</em>
  3239. <p>SecretRef references a key in a secret that will be used as value.</p>
  3240. </td>
  3241. </tr>
  3242. </tbody>
  3243. </table>
  3244. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  3245. </h3>
  3246. <p>
  3247. (<em>Appears on:</em>
  3248. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  3249. </p>
  3250. <p>
  3251. </p>
  3252. <table>
  3253. <thead>
  3254. <tr>
  3255. <th>Field</th>
  3256. <th>Description</th>
  3257. </tr>
  3258. </thead>
  3259. <tbody>
  3260. <tr>
  3261. <td>
  3262. <code>secretRef</code></br>
  3263. <em>
  3264. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  3265. DopplerAuthSecretRef
  3266. </a>
  3267. </em>
  3268. </td>
  3269. <td>
  3270. </td>
  3271. </tr>
  3272. </tbody>
  3273. </table>
  3274. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  3275. </h3>
  3276. <p>
  3277. (<em>Appears on:</em>
  3278. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  3279. </p>
  3280. <p>
  3281. </p>
  3282. <table>
  3283. <thead>
  3284. <tr>
  3285. <th>Field</th>
  3286. <th>Description</th>
  3287. </tr>
  3288. </thead>
  3289. <tbody>
  3290. <tr>
  3291. <td>
  3292. <code>dopplerToken</code></br>
  3293. <em>
  3294. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3295. External Secrets meta/v1.SecretKeySelector
  3296. </a>
  3297. </em>
  3298. </td>
  3299. <td>
  3300. <p>The DopplerToken is used for authentication.
  3301. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  3302. The Key attribute defaults to dopplerToken if not specified.</p>
  3303. </td>
  3304. </tr>
  3305. </tbody>
  3306. </table>
  3307. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  3308. </h3>
  3309. <p>
  3310. (<em>Appears on:</em>
  3311. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3312. </p>
  3313. <p>
  3314. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  3315. Project and Config are required if not using a Service Token.</p>
  3316. </p>
  3317. <table>
  3318. <thead>
  3319. <tr>
  3320. <th>Field</th>
  3321. <th>Description</th>
  3322. </tr>
  3323. </thead>
  3324. <tbody>
  3325. <tr>
  3326. <td>
  3327. <code>auth</code></br>
  3328. <em>
  3329. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  3330. DopplerAuth
  3331. </a>
  3332. </em>
  3333. </td>
  3334. <td>
  3335. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  3336. </td>
  3337. </tr>
  3338. <tr>
  3339. <td>
  3340. <code>project</code></br>
  3341. <em>
  3342. string
  3343. </em>
  3344. </td>
  3345. <td>
  3346. <em>(Optional)</em>
  3347. <p>Doppler project (required if not using a Service Token)</p>
  3348. </td>
  3349. </tr>
  3350. <tr>
  3351. <td>
  3352. <code>config</code></br>
  3353. <em>
  3354. string
  3355. </em>
  3356. </td>
  3357. <td>
  3358. <em>(Optional)</em>
  3359. <p>Doppler config (required if not using a Service Token)</p>
  3360. </td>
  3361. </tr>
  3362. <tr>
  3363. <td>
  3364. <code>nameTransformer</code></br>
  3365. <em>
  3366. string
  3367. </em>
  3368. </td>
  3369. <td>
  3370. <em>(Optional)</em>
  3371. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  3372. </td>
  3373. </tr>
  3374. <tr>
  3375. <td>
  3376. <code>format</code></br>
  3377. <em>
  3378. string
  3379. </em>
  3380. </td>
  3381. <td>
  3382. <em>(Optional)</em>
  3383. <p>Format enables the downloading of secrets as a file (string)</p>
  3384. </td>
  3385. </tr>
  3386. </tbody>
  3387. </table>
  3388. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  3389. </h3>
  3390. <p>
  3391. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  3392. </p>
  3393. <table>
  3394. <thead>
  3395. <tr>
  3396. <th>Field</th>
  3397. <th>Description</th>
  3398. </tr>
  3399. </thead>
  3400. <tbody>
  3401. <tr>
  3402. <td>
  3403. <code>metadata</code></br>
  3404. <em>
  3405. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3406. Kubernetes meta/v1.ObjectMeta
  3407. </a>
  3408. </em>
  3409. </td>
  3410. <td>
  3411. Refer to the Kubernetes API documentation for the fields of the
  3412. <code>metadata</code> field.
  3413. </td>
  3414. </tr>
  3415. <tr>
  3416. <td>
  3417. <code>spec</code></br>
  3418. <em>
  3419. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  3420. ExternalSecretSpec
  3421. </a>
  3422. </em>
  3423. </td>
  3424. <td>
  3425. <br/>
  3426. <br/>
  3427. <table>
  3428. <tr>
  3429. <td>
  3430. <code>secretStoreRef</code></br>
  3431. <em>
  3432. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3433. SecretStoreRef
  3434. </a>
  3435. </em>
  3436. </td>
  3437. <td>
  3438. <em>(Optional)</em>
  3439. </td>
  3440. </tr>
  3441. <tr>
  3442. <td>
  3443. <code>target</code></br>
  3444. <em>
  3445. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3446. ExternalSecretTarget
  3447. </a>
  3448. </em>
  3449. </td>
  3450. <td>
  3451. <em>(Optional)</em>
  3452. </td>
  3453. </tr>
  3454. <tr>
  3455. <td>
  3456. <code>refreshInterval</code></br>
  3457. <em>
  3458. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3459. Kubernetes meta/v1.Duration
  3460. </a>
  3461. </em>
  3462. </td>
  3463. <td>
  3464. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3465. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  3466. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3467. </td>
  3468. </tr>
  3469. <tr>
  3470. <td>
  3471. <code>data</code></br>
  3472. <em>
  3473. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3474. []ExternalSecretData
  3475. </a>
  3476. </em>
  3477. </td>
  3478. <td>
  3479. <em>(Optional)</em>
  3480. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3481. </td>
  3482. </tr>
  3483. <tr>
  3484. <td>
  3485. <code>dataFrom</code></br>
  3486. <em>
  3487. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3488. []ExternalSecretDataFromRemoteRef
  3489. </a>
  3490. </em>
  3491. </td>
  3492. <td>
  3493. <em>(Optional)</em>
  3494. <p>DataFrom is used to fetch all properties from a specific Provider data
  3495. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3496. </td>
  3497. </tr>
  3498. </table>
  3499. </td>
  3500. </tr>
  3501. <tr>
  3502. <td>
  3503. <code>status</code></br>
  3504. <em>
  3505. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  3506. ExternalSecretStatus
  3507. </a>
  3508. </em>
  3509. </td>
  3510. <td>
  3511. </td>
  3512. </tr>
  3513. </tbody>
  3514. </table>
  3515. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  3516. (<code>string</code> alias)</p></h3>
  3517. <p>
  3518. (<em>Appears on:</em>
  3519. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  3520. </p>
  3521. <p>
  3522. </p>
  3523. <table>
  3524. <thead>
  3525. <tr>
  3526. <th>Value</th>
  3527. <th>Description</th>
  3528. </tr>
  3529. </thead>
  3530. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  3531. <td></td>
  3532. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  3533. <td></td>
  3534. </tr></tbody>
  3535. </table>
  3536. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  3537. (<code>string</code> alias)</p></h3>
  3538. <p>
  3539. (<em>Appears on:</em>
  3540. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3541. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3542. </p>
  3543. <p>
  3544. </p>
  3545. <table>
  3546. <thead>
  3547. <tr>
  3548. <th>Value</th>
  3549. <th>Description</th>
  3550. </tr>
  3551. </thead>
  3552. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  3553. <td></td>
  3554. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  3555. <td></td>
  3556. </tr></tbody>
  3557. </table>
  3558. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  3559. (<code>string</code> alias)</p></h3>
  3560. <p>
  3561. (<em>Appears on:</em>
  3562. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3563. </p>
  3564. <p>
  3565. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  3566. </p>
  3567. <table>
  3568. <thead>
  3569. <tr>
  3570. <th>Value</th>
  3571. <th>Description</th>
  3572. </tr>
  3573. </thead>
  3574. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  3575. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  3576. </td>
  3577. </tr><tr><td><p>&#34;None&#34;</p></td>
  3578. <td><p>None does not create a Secret (future use with injector).</p>
  3579. </td>
  3580. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  3581. <td><p>Orphan creates the Secret and does not set the ownerReference.
  3582. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  3583. </td>
  3584. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  3585. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  3586. </td>
  3587. </tr></tbody>
  3588. </table>
  3589. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  3590. </h3>
  3591. <p>
  3592. (<em>Appears on:</em>
  3593. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3594. </p>
  3595. <p>
  3596. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  3597. </p>
  3598. <table>
  3599. <thead>
  3600. <tr>
  3601. <th>Field</th>
  3602. <th>Description</th>
  3603. </tr>
  3604. </thead>
  3605. <tbody>
  3606. <tr>
  3607. <td>
  3608. <code>secretKey</code></br>
  3609. <em>
  3610. string
  3611. </em>
  3612. </td>
  3613. <td>
  3614. <p>SecretKey defines the key in which the controller stores
  3615. the value. This is the key in the Kind=Secret</p>
  3616. </td>
  3617. </tr>
  3618. <tr>
  3619. <td>
  3620. <code>remoteRef</code></br>
  3621. <em>
  3622. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3623. ExternalSecretDataRemoteRef
  3624. </a>
  3625. </em>
  3626. </td>
  3627. <td>
  3628. <p>RemoteRef points to the remote secret and defines
  3629. which secret (version/property/..) to fetch.</p>
  3630. </td>
  3631. </tr>
  3632. <tr>
  3633. <td>
  3634. <code>sourceRef</code></br>
  3635. <em>
  3636. <a href="#external-secrets.io/v1beta1.StoreSourceRef">
  3637. StoreSourceRef
  3638. </a>
  3639. </em>
  3640. </td>
  3641. <td>
  3642. <p>SourceRef allows you to override the source
  3643. from which the value will pulled from.</p>
  3644. </td>
  3645. </tr>
  3646. </tbody>
  3647. </table>
  3648. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  3649. </h3>
  3650. <p>
  3651. (<em>Appears on:</em>
  3652. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3653. </p>
  3654. <p>
  3655. </p>
  3656. <table>
  3657. <thead>
  3658. <tr>
  3659. <th>Field</th>
  3660. <th>Description</th>
  3661. </tr>
  3662. </thead>
  3663. <tbody>
  3664. <tr>
  3665. <td>
  3666. <code>extract</code></br>
  3667. <em>
  3668. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  3669. ExternalSecretDataRemoteRef
  3670. </a>
  3671. </em>
  3672. </td>
  3673. <td>
  3674. <em>(Optional)</em>
  3675. <p>Used to extract multiple key/value pairs from one secret
  3676. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3677. </td>
  3678. </tr>
  3679. <tr>
  3680. <td>
  3681. <code>find</code></br>
  3682. <em>
  3683. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  3684. ExternalSecretFind
  3685. </a>
  3686. </em>
  3687. </td>
  3688. <td>
  3689. <em>(Optional)</em>
  3690. <p>Used to find secrets based on tags or regular expressions
  3691. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  3692. </td>
  3693. </tr>
  3694. <tr>
  3695. <td>
  3696. <code>rewrite</code></br>
  3697. <em>
  3698. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  3699. []ExternalSecretRewrite
  3700. </a>
  3701. </em>
  3702. </td>
  3703. <td>
  3704. <em>(Optional)</em>
  3705. <p>Used to rewrite secret Keys after getting them from the secret Provider
  3706. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  3707. </td>
  3708. </tr>
  3709. <tr>
  3710. <td>
  3711. <code>sourceRef</code></br>
  3712. <em>
  3713. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">
  3714. StoreGeneratorSourceRef
  3715. </a>
  3716. </em>
  3717. </td>
  3718. <td>
  3719. <p>SourceRef points to a store or generator
  3720. which contains secret values ready to use.
  3721. Use this in combination with Extract or Find pull values out of
  3722. a specific SecretStore.
  3723. When sourceRef points to a generator Extract or Find is not supported.
  3724. The generator returns a static map of values</p>
  3725. </td>
  3726. </tr>
  3727. </tbody>
  3728. </table>
  3729. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  3730. </h3>
  3731. <p>
  3732. (<em>Appears on:</em>
  3733. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  3734. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3735. </p>
  3736. <p>
  3737. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  3738. </p>
  3739. <table>
  3740. <thead>
  3741. <tr>
  3742. <th>Field</th>
  3743. <th>Description</th>
  3744. </tr>
  3745. </thead>
  3746. <tbody>
  3747. <tr>
  3748. <td>
  3749. <code>key</code></br>
  3750. <em>
  3751. string
  3752. </em>
  3753. </td>
  3754. <td>
  3755. <p>Key is the key used in the Provider, mandatory</p>
  3756. </td>
  3757. </tr>
  3758. <tr>
  3759. <td>
  3760. <code>metadataPolicy</code></br>
  3761. <em>
  3762. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  3763. ExternalSecretMetadataPolicy
  3764. </a>
  3765. </em>
  3766. </td>
  3767. <td>
  3768. <em>(Optional)</em>
  3769. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  3770. </td>
  3771. </tr>
  3772. <tr>
  3773. <td>
  3774. <code>property</code></br>
  3775. <em>
  3776. string
  3777. </em>
  3778. </td>
  3779. <td>
  3780. <em>(Optional)</em>
  3781. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  3782. </td>
  3783. </tr>
  3784. <tr>
  3785. <td>
  3786. <code>version</code></br>
  3787. <em>
  3788. string
  3789. </em>
  3790. </td>
  3791. <td>
  3792. <em>(Optional)</em>
  3793. <p>Used to select a specific version of the Provider value, if supported</p>
  3794. </td>
  3795. </tr>
  3796. <tr>
  3797. <td>
  3798. <code>conversionStrategy</code></br>
  3799. <em>
  3800. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3801. ExternalSecretConversionStrategy
  3802. </a>
  3803. </em>
  3804. </td>
  3805. <td>
  3806. <em>(Optional)</em>
  3807. <p>Used to define a conversion Strategy</p>
  3808. </td>
  3809. </tr>
  3810. <tr>
  3811. <td>
  3812. <code>decodingStrategy</code></br>
  3813. <em>
  3814. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3815. ExternalSecretDecodingStrategy
  3816. </a>
  3817. </em>
  3818. </td>
  3819. <td>
  3820. <em>(Optional)</em>
  3821. <p>Used to define a decoding Strategy</p>
  3822. </td>
  3823. </tr>
  3824. </tbody>
  3825. </table>
  3826. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  3827. (<code>string</code> alias)</p></h3>
  3828. <p>
  3829. (<em>Appears on:</em>
  3830. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  3831. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3832. </p>
  3833. <p>
  3834. </p>
  3835. <table>
  3836. <thead>
  3837. <tr>
  3838. <th>Value</th>
  3839. <th>Description</th>
  3840. </tr>
  3841. </thead>
  3842. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  3843. <td></td>
  3844. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  3845. <td></td>
  3846. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  3847. <td></td>
  3848. </tr><tr><td><p>&#34;None&#34;</p></td>
  3849. <td></td>
  3850. </tr></tbody>
  3851. </table>
  3852. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  3853. (<code>string</code> alias)</p></h3>
  3854. <p>
  3855. (<em>Appears on:</em>
  3856. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3857. </p>
  3858. <p>
  3859. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  3860. </p>
  3861. <table>
  3862. <thead>
  3863. <tr>
  3864. <th>Value</th>
  3865. <th>Description</th>
  3866. </tr>
  3867. </thead>
  3868. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  3869. <td><p>Delete deletes the secret if all provider secrets are deleted.
  3870. If a secret gets deleted on the provider side and is not accessible
  3871. anymore this is not considered an error and the ExternalSecret
  3872. does not go into SecretSyncedError status.</p>
  3873. </td>
  3874. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  3875. <td><p>Merge removes keys in the secret, but not the secret itself.
  3876. If a secret gets deleted on the provider side and is not accessible
  3877. anymore this is not considered an error and the ExternalSecret
  3878. does not go into SecretSyncedError status.</p>
  3879. </td>
  3880. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  3881. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  3882. If a provider secret does not exist the ExternalSecret gets into the
  3883. SecretSyncedError status.</p>
  3884. </td>
  3885. </tr></tbody>
  3886. </table>
  3887. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  3888. </h3>
  3889. <p>
  3890. (<em>Appears on:</em>
  3891. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  3892. </p>
  3893. <p>
  3894. </p>
  3895. <table>
  3896. <thead>
  3897. <tr>
  3898. <th>Field</th>
  3899. <th>Description</th>
  3900. </tr>
  3901. </thead>
  3902. <tbody>
  3903. <tr>
  3904. <td>
  3905. <code>path</code></br>
  3906. <em>
  3907. string
  3908. </em>
  3909. </td>
  3910. <td>
  3911. <em>(Optional)</em>
  3912. <p>A root path to start the find operations.</p>
  3913. </td>
  3914. </tr>
  3915. <tr>
  3916. <td>
  3917. <code>name</code></br>
  3918. <em>
  3919. <a href="#external-secrets.io/v1beta1.FindName">
  3920. FindName
  3921. </a>
  3922. </em>
  3923. </td>
  3924. <td>
  3925. <em>(Optional)</em>
  3926. <p>Finds secrets based on the name.</p>
  3927. </td>
  3928. </tr>
  3929. <tr>
  3930. <td>
  3931. <code>tags</code></br>
  3932. <em>
  3933. map[string]string
  3934. </em>
  3935. </td>
  3936. <td>
  3937. <em>(Optional)</em>
  3938. <p>Find secrets based on tags.</p>
  3939. </td>
  3940. </tr>
  3941. <tr>
  3942. <td>
  3943. <code>conversionStrategy</code></br>
  3944. <em>
  3945. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  3946. ExternalSecretConversionStrategy
  3947. </a>
  3948. </em>
  3949. </td>
  3950. <td>
  3951. <em>(Optional)</em>
  3952. <p>Used to define a conversion Strategy</p>
  3953. </td>
  3954. </tr>
  3955. <tr>
  3956. <td>
  3957. <code>decodingStrategy</code></br>
  3958. <em>
  3959. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  3960. ExternalSecretDecodingStrategy
  3961. </a>
  3962. </em>
  3963. </td>
  3964. <td>
  3965. <em>(Optional)</em>
  3966. <p>Used to define a decoding Strategy</p>
  3967. </td>
  3968. </tr>
  3969. </tbody>
  3970. </table>
  3971. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadata">ExternalSecretMetadata
  3972. </h3>
  3973. <p>
  3974. (<em>Appears on:</em>
  3975. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  3976. </p>
  3977. <p>
  3978. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  3979. </p>
  3980. <table>
  3981. <thead>
  3982. <tr>
  3983. <th>Field</th>
  3984. <th>Description</th>
  3985. </tr>
  3986. </thead>
  3987. <tbody>
  3988. <tr>
  3989. <td>
  3990. <code>annotations</code></br>
  3991. <em>
  3992. map[string]string
  3993. </em>
  3994. </td>
  3995. <td>
  3996. <em>(Optional)</em>
  3997. </td>
  3998. </tr>
  3999. <tr>
  4000. <td>
  4001. <code>labels</code></br>
  4002. <em>
  4003. map[string]string
  4004. </em>
  4005. </td>
  4006. <td>
  4007. <em>(Optional)</em>
  4008. </td>
  4009. </tr>
  4010. </tbody>
  4011. </table>
  4012. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4013. (<code>string</code> alias)</p></h3>
  4014. <p>
  4015. (<em>Appears on:</em>
  4016. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4017. </p>
  4018. <p>
  4019. </p>
  4020. <table>
  4021. <thead>
  4022. <tr>
  4023. <th>Value</th>
  4024. <th>Description</th>
  4025. </tr>
  4026. </thead>
  4027. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4028. <td></td>
  4029. </tr><tr><td><p>&#34;None&#34;</p></td>
  4030. <td></td>
  4031. </tr></tbody>
  4032. </table>
  4033. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  4034. </h3>
  4035. <p>
  4036. (<em>Appears on:</em>
  4037. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4038. </p>
  4039. <p>
  4040. </p>
  4041. <table>
  4042. <thead>
  4043. <tr>
  4044. <th>Field</th>
  4045. <th>Description</th>
  4046. </tr>
  4047. </thead>
  4048. <tbody>
  4049. <tr>
  4050. <td>
  4051. <code>regexp</code></br>
  4052. <em>
  4053. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  4054. ExternalSecretRewriteRegexp
  4055. </a>
  4056. </em>
  4057. </td>
  4058. <td>
  4059. <em>(Optional)</em>
  4060. <p>Used to rewrite with regular expressions.
  4061. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4062. </td>
  4063. </tr>
  4064. <tr>
  4065. <td>
  4066. <code>transform</code></br>
  4067. <em>
  4068. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteTransform">
  4069. ExternalSecretRewriteTransform
  4070. </a>
  4071. </em>
  4072. </td>
  4073. <td>
  4074. <em>(Optional)</em>
  4075. <p>Used to apply string transformation on the secrets.
  4076. The resulting key will be the output of the template applied by the operation.</p>
  4077. </td>
  4078. </tr>
  4079. </tbody>
  4080. </table>
  4081. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  4082. </h3>
  4083. <p>
  4084. (<em>Appears on:</em>
  4085. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4086. </p>
  4087. <p>
  4088. </p>
  4089. <table>
  4090. <thead>
  4091. <tr>
  4092. <th>Field</th>
  4093. <th>Description</th>
  4094. </tr>
  4095. </thead>
  4096. <tbody>
  4097. <tr>
  4098. <td>
  4099. <code>source</code></br>
  4100. <em>
  4101. string
  4102. </em>
  4103. </td>
  4104. <td>
  4105. <p>Used to define the regular expression of a re.Compiler.</p>
  4106. </td>
  4107. </tr>
  4108. <tr>
  4109. <td>
  4110. <code>target</code></br>
  4111. <em>
  4112. string
  4113. </em>
  4114. </td>
  4115. <td>
  4116. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  4117. </td>
  4118. </tr>
  4119. </tbody>
  4120. </table>
  4121. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  4122. </h3>
  4123. <p>
  4124. (<em>Appears on:</em>
  4125. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  4126. </p>
  4127. <p>
  4128. </p>
  4129. <table>
  4130. <thead>
  4131. <tr>
  4132. <th>Field</th>
  4133. <th>Description</th>
  4134. </tr>
  4135. </thead>
  4136. <tbody>
  4137. <tr>
  4138. <td>
  4139. <code>template</code></br>
  4140. <em>
  4141. string
  4142. </em>
  4143. </td>
  4144. <td>
  4145. <p>Used to define the template to apply on the secret name.
  4146. <code>.value</code> will specify the secret name in the template.</p>
  4147. </td>
  4148. </tr>
  4149. </tbody>
  4150. </table>
  4151. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  4152. </h3>
  4153. <p>
  4154. (<em>Appears on:</em>
  4155. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  4156. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4157. </p>
  4158. <p>
  4159. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  4160. </p>
  4161. <table>
  4162. <thead>
  4163. <tr>
  4164. <th>Field</th>
  4165. <th>Description</th>
  4166. </tr>
  4167. </thead>
  4168. <tbody>
  4169. <tr>
  4170. <td>
  4171. <code>secretStoreRef</code></br>
  4172. <em>
  4173. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  4174. SecretStoreRef
  4175. </a>
  4176. </em>
  4177. </td>
  4178. <td>
  4179. <em>(Optional)</em>
  4180. </td>
  4181. </tr>
  4182. <tr>
  4183. <td>
  4184. <code>target</code></br>
  4185. <em>
  4186. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  4187. ExternalSecretTarget
  4188. </a>
  4189. </em>
  4190. </td>
  4191. <td>
  4192. <em>(Optional)</em>
  4193. </td>
  4194. </tr>
  4195. <tr>
  4196. <td>
  4197. <code>refreshInterval</code></br>
  4198. <em>
  4199. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4200. Kubernetes meta/v1.Duration
  4201. </a>
  4202. </em>
  4203. </td>
  4204. <td>
  4205. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  4206. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4207. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4208. </td>
  4209. </tr>
  4210. <tr>
  4211. <td>
  4212. <code>data</code></br>
  4213. <em>
  4214. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  4215. []ExternalSecretData
  4216. </a>
  4217. </em>
  4218. </td>
  4219. <td>
  4220. <em>(Optional)</em>
  4221. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4222. </td>
  4223. </tr>
  4224. <tr>
  4225. <td>
  4226. <code>dataFrom</code></br>
  4227. <em>
  4228. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  4229. []ExternalSecretDataFromRemoteRef
  4230. </a>
  4231. </em>
  4232. </td>
  4233. <td>
  4234. <em>(Optional)</em>
  4235. <p>DataFrom is used to fetch all properties from a specific Provider data
  4236. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4237. </td>
  4238. </tr>
  4239. </tbody>
  4240. </table>
  4241. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  4242. </h3>
  4243. <p>
  4244. (<em>Appears on:</em>
  4245. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  4246. </p>
  4247. <p>
  4248. </p>
  4249. <table>
  4250. <thead>
  4251. <tr>
  4252. <th>Field</th>
  4253. <th>Description</th>
  4254. </tr>
  4255. </thead>
  4256. <tbody>
  4257. <tr>
  4258. <td>
  4259. <code>refreshTime</code></br>
  4260. <em>
  4261. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4262. Kubernetes meta/v1.Time
  4263. </a>
  4264. </em>
  4265. </td>
  4266. <td>
  4267. <p>refreshTime is the time and date the external secret was fetched and
  4268. the target secret updated</p>
  4269. </td>
  4270. </tr>
  4271. <tr>
  4272. <td>
  4273. <code>syncedResourceVersion</code></br>
  4274. <em>
  4275. string
  4276. </em>
  4277. </td>
  4278. <td>
  4279. <p>SyncedResourceVersion keeps track of the last synced version</p>
  4280. </td>
  4281. </tr>
  4282. <tr>
  4283. <td>
  4284. <code>conditions</code></br>
  4285. <em>
  4286. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  4287. []ExternalSecretStatusCondition
  4288. </a>
  4289. </em>
  4290. </td>
  4291. <td>
  4292. <em>(Optional)</em>
  4293. </td>
  4294. </tr>
  4295. <tr>
  4296. <td>
  4297. <code>binding</code></br>
  4298. <em>
  4299. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  4300. Kubernetes core/v1.LocalObjectReference
  4301. </a>
  4302. </em>
  4303. </td>
  4304. <td>
  4305. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  4306. </td>
  4307. </tr>
  4308. </tbody>
  4309. </table>
  4310. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  4311. </h3>
  4312. <p>
  4313. (<em>Appears on:</em>
  4314. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  4315. </p>
  4316. <p>
  4317. </p>
  4318. <table>
  4319. <thead>
  4320. <tr>
  4321. <th>Field</th>
  4322. <th>Description</th>
  4323. </tr>
  4324. </thead>
  4325. <tbody>
  4326. <tr>
  4327. <td>
  4328. <code>type</code></br>
  4329. <em>
  4330. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  4331. ExternalSecretConditionType
  4332. </a>
  4333. </em>
  4334. </td>
  4335. <td>
  4336. </td>
  4337. </tr>
  4338. <tr>
  4339. <td>
  4340. <code>status</code></br>
  4341. <em>
  4342. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  4343. Kubernetes core/v1.ConditionStatus
  4344. </a>
  4345. </em>
  4346. </td>
  4347. <td>
  4348. </td>
  4349. </tr>
  4350. <tr>
  4351. <td>
  4352. <code>reason</code></br>
  4353. <em>
  4354. string
  4355. </em>
  4356. </td>
  4357. <td>
  4358. <em>(Optional)</em>
  4359. </td>
  4360. </tr>
  4361. <tr>
  4362. <td>
  4363. <code>message</code></br>
  4364. <em>
  4365. string
  4366. </em>
  4367. </td>
  4368. <td>
  4369. <em>(Optional)</em>
  4370. </td>
  4371. </tr>
  4372. <tr>
  4373. <td>
  4374. <code>lastTransitionTime</code></br>
  4375. <em>
  4376. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  4377. Kubernetes meta/v1.Time
  4378. </a>
  4379. </em>
  4380. </td>
  4381. <td>
  4382. <em>(Optional)</em>
  4383. </td>
  4384. </tr>
  4385. </tbody>
  4386. </table>
  4387. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  4388. </h3>
  4389. <p>
  4390. (<em>Appears on:</em>
  4391. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4392. </p>
  4393. <p>
  4394. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  4395. There can be only one target per ExternalSecret.</p>
  4396. </p>
  4397. <table>
  4398. <thead>
  4399. <tr>
  4400. <th>Field</th>
  4401. <th>Description</th>
  4402. </tr>
  4403. </thead>
  4404. <tbody>
  4405. <tr>
  4406. <td>
  4407. <code>name</code></br>
  4408. <em>
  4409. string
  4410. </em>
  4411. </td>
  4412. <td>
  4413. <em>(Optional)</em>
  4414. <p>Name defines the name of the Secret resource to be managed
  4415. This field is immutable
  4416. Defaults to the .metadata.name of the ExternalSecret resource</p>
  4417. </td>
  4418. </tr>
  4419. <tr>
  4420. <td>
  4421. <code>creationPolicy</code></br>
  4422. <em>
  4423. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  4424. ExternalSecretCreationPolicy
  4425. </a>
  4426. </em>
  4427. </td>
  4428. <td>
  4429. <em>(Optional)</em>
  4430. <p>CreationPolicy defines rules on how to create the resulting Secret
  4431. Defaults to &lsquo;Owner&rsquo;</p>
  4432. </td>
  4433. </tr>
  4434. <tr>
  4435. <td>
  4436. <code>deletionPolicy</code></br>
  4437. <em>
  4438. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  4439. ExternalSecretDeletionPolicy
  4440. </a>
  4441. </em>
  4442. </td>
  4443. <td>
  4444. <em>(Optional)</em>
  4445. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  4446. Defaults to &lsquo;Retain&rsquo;</p>
  4447. </td>
  4448. </tr>
  4449. <tr>
  4450. <td>
  4451. <code>template</code></br>
  4452. <em>
  4453. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  4454. ExternalSecretTemplate
  4455. </a>
  4456. </em>
  4457. </td>
  4458. <td>
  4459. <em>(Optional)</em>
  4460. <p>Template defines a blueprint for the created Secret resource.</p>
  4461. </td>
  4462. </tr>
  4463. <tr>
  4464. <td>
  4465. <code>immutable</code></br>
  4466. <em>
  4467. bool
  4468. </em>
  4469. </td>
  4470. <td>
  4471. <em>(Optional)</em>
  4472. <p>Immutable defines if the final secret will be immutable</p>
  4473. </td>
  4474. </tr>
  4475. </tbody>
  4476. </table>
  4477. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  4478. </h3>
  4479. <p>
  4480. (<em>Appears on:</em>
  4481. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4482. </p>
  4483. <p>
  4484. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  4485. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  4486. </p>
  4487. <table>
  4488. <thead>
  4489. <tr>
  4490. <th>Field</th>
  4491. <th>Description</th>
  4492. </tr>
  4493. </thead>
  4494. <tbody>
  4495. <tr>
  4496. <td>
  4497. <code>type</code></br>
  4498. <em>
  4499. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  4500. Kubernetes core/v1.SecretType
  4501. </a>
  4502. </em>
  4503. </td>
  4504. <td>
  4505. <em>(Optional)</em>
  4506. </td>
  4507. </tr>
  4508. <tr>
  4509. <td>
  4510. <code>engineVersion</code></br>
  4511. <em>
  4512. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  4513. TemplateEngineVersion
  4514. </a>
  4515. </em>
  4516. </td>
  4517. <td>
  4518. <p>EngineVersion specifies the template engine version
  4519. that should be used to compile/execute the
  4520. template specified in .data and .templateFrom[].</p>
  4521. </td>
  4522. </tr>
  4523. <tr>
  4524. <td>
  4525. <code>metadata</code></br>
  4526. <em>
  4527. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  4528. ExternalSecretTemplateMetadata
  4529. </a>
  4530. </em>
  4531. </td>
  4532. <td>
  4533. <em>(Optional)</em>
  4534. </td>
  4535. </tr>
  4536. <tr>
  4537. <td>
  4538. <code>mergePolicy</code></br>
  4539. <em>
  4540. <a href="#external-secrets.io/v1beta1.TemplateMergePolicy">
  4541. TemplateMergePolicy
  4542. </a>
  4543. </em>
  4544. </td>
  4545. <td>
  4546. </td>
  4547. </tr>
  4548. <tr>
  4549. <td>
  4550. <code>data</code></br>
  4551. <em>
  4552. map[string]string
  4553. </em>
  4554. </td>
  4555. <td>
  4556. <em>(Optional)</em>
  4557. </td>
  4558. </tr>
  4559. <tr>
  4560. <td>
  4561. <code>templateFrom</code></br>
  4562. <em>
  4563. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  4564. []TemplateFrom
  4565. </a>
  4566. </em>
  4567. </td>
  4568. <td>
  4569. <em>(Optional)</em>
  4570. </td>
  4571. </tr>
  4572. </tbody>
  4573. </table>
  4574. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  4575. </h3>
  4576. <p>
  4577. (<em>Appears on:</em>
  4578. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  4579. </p>
  4580. <p>
  4581. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  4582. </p>
  4583. <table>
  4584. <thead>
  4585. <tr>
  4586. <th>Field</th>
  4587. <th>Description</th>
  4588. </tr>
  4589. </thead>
  4590. <tbody>
  4591. <tr>
  4592. <td>
  4593. <code>annotations</code></br>
  4594. <em>
  4595. map[string]string
  4596. </em>
  4597. </td>
  4598. <td>
  4599. <em>(Optional)</em>
  4600. </td>
  4601. </tr>
  4602. <tr>
  4603. <td>
  4604. <code>labels</code></br>
  4605. <em>
  4606. map[string]string
  4607. </em>
  4608. </td>
  4609. <td>
  4610. <em>(Optional)</em>
  4611. </td>
  4612. </tr>
  4613. </tbody>
  4614. </table>
  4615. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  4616. </h3>
  4617. <p>
  4618. </p>
  4619. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  4620. </h3>
  4621. <p>
  4622. (<em>Appears on:</em>
  4623. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4624. </p>
  4625. <p>
  4626. <p>FakeProvider configures a fake provider that returns static values.</p>
  4627. </p>
  4628. <table>
  4629. <thead>
  4630. <tr>
  4631. <th>Field</th>
  4632. <th>Description</th>
  4633. </tr>
  4634. </thead>
  4635. <tbody>
  4636. <tr>
  4637. <td>
  4638. <code>data</code></br>
  4639. <em>
  4640. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  4641. []FakeProviderData
  4642. </a>
  4643. </em>
  4644. </td>
  4645. <td>
  4646. </td>
  4647. </tr>
  4648. </tbody>
  4649. </table>
  4650. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  4651. </h3>
  4652. <p>
  4653. (<em>Appears on:</em>
  4654. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  4655. </p>
  4656. <p>
  4657. </p>
  4658. <table>
  4659. <thead>
  4660. <tr>
  4661. <th>Field</th>
  4662. <th>Description</th>
  4663. </tr>
  4664. </thead>
  4665. <tbody>
  4666. <tr>
  4667. <td>
  4668. <code>key</code></br>
  4669. <em>
  4670. string
  4671. </em>
  4672. </td>
  4673. <td>
  4674. </td>
  4675. </tr>
  4676. <tr>
  4677. <td>
  4678. <code>value</code></br>
  4679. <em>
  4680. string
  4681. </em>
  4682. </td>
  4683. <td>
  4684. </td>
  4685. </tr>
  4686. <tr>
  4687. <td>
  4688. <code>valueMap</code></br>
  4689. <em>
  4690. map[string]string
  4691. </em>
  4692. </td>
  4693. <td>
  4694. <p>Deprecated: ValueMap is deprecated and is intended to be removed in the future, use the <code>value</code> field instead.</p>
  4695. </td>
  4696. </tr>
  4697. <tr>
  4698. <td>
  4699. <code>version</code></br>
  4700. <em>
  4701. string
  4702. </em>
  4703. </td>
  4704. <td>
  4705. </td>
  4706. </tr>
  4707. </tbody>
  4708. </table>
  4709. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  4710. </h3>
  4711. <p>
  4712. (<em>Appears on:</em>
  4713. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  4714. </p>
  4715. <p>
  4716. </p>
  4717. <table>
  4718. <thead>
  4719. <tr>
  4720. <th>Field</th>
  4721. <th>Description</th>
  4722. </tr>
  4723. </thead>
  4724. <tbody>
  4725. <tr>
  4726. <td>
  4727. <code>regexp</code></br>
  4728. <em>
  4729. string
  4730. </em>
  4731. </td>
  4732. <td>
  4733. <em>(Optional)</em>
  4734. <p>Finds secrets base</p>
  4735. </td>
  4736. </tr>
  4737. </tbody>
  4738. </table>
  4739. <h3 id="external-secrets.io/v1beta1.FortanixProvider">FortanixProvider
  4740. </h3>
  4741. <p>
  4742. (<em>Appears on:</em>
  4743. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4744. </p>
  4745. <p>
  4746. </p>
  4747. <table>
  4748. <thead>
  4749. <tr>
  4750. <th>Field</th>
  4751. <th>Description</th>
  4752. </tr>
  4753. </thead>
  4754. <tbody>
  4755. <tr>
  4756. <td>
  4757. <code>apiUrl</code></br>
  4758. <em>
  4759. string
  4760. </em>
  4761. </td>
  4762. <td>
  4763. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  4764. </td>
  4765. </tr>
  4766. <tr>
  4767. <td>
  4768. <code>apiKey</code></br>
  4769. <em>
  4770. <a href="#external-secrets.io/v1beta1.FortanixProviderSecretRef">
  4771. FortanixProviderSecretRef
  4772. </a>
  4773. </em>
  4774. </td>
  4775. <td>
  4776. <p>APIKey is the API token to access SDKMS Applications.</p>
  4777. </td>
  4778. </tr>
  4779. </tbody>
  4780. </table>
  4781. <h3 id="external-secrets.io/v1beta1.FortanixProviderSecretRef">FortanixProviderSecretRef
  4782. </h3>
  4783. <p>
  4784. (<em>Appears on:</em>
  4785. <a href="#external-secrets.io/v1beta1.FortanixProvider">FortanixProvider</a>)
  4786. </p>
  4787. <p>
  4788. </p>
  4789. <table>
  4790. <thead>
  4791. <tr>
  4792. <th>Field</th>
  4793. <th>Description</th>
  4794. </tr>
  4795. </thead>
  4796. <tbody>
  4797. <tr>
  4798. <td>
  4799. <code>secretRef</code></br>
  4800. <em>
  4801. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4802. External Secrets meta/v1.SecretKeySelector
  4803. </a>
  4804. </em>
  4805. </td>
  4806. <td>
  4807. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  4808. </td>
  4809. </tr>
  4810. </tbody>
  4811. </table>
  4812. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  4813. </h3>
  4814. <p>
  4815. (<em>Appears on:</em>
  4816. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  4817. </p>
  4818. <p>
  4819. </p>
  4820. <table>
  4821. <thead>
  4822. <tr>
  4823. <th>Field</th>
  4824. <th>Description</th>
  4825. </tr>
  4826. </thead>
  4827. <tbody>
  4828. <tr>
  4829. <td>
  4830. <code>secretRef</code></br>
  4831. <em>
  4832. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  4833. GCPSMAuthSecretRef
  4834. </a>
  4835. </em>
  4836. </td>
  4837. <td>
  4838. <em>(Optional)</em>
  4839. </td>
  4840. </tr>
  4841. <tr>
  4842. <td>
  4843. <code>workloadIdentity</code></br>
  4844. <em>
  4845. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  4846. GCPWorkloadIdentity
  4847. </a>
  4848. </em>
  4849. </td>
  4850. <td>
  4851. <em>(Optional)</em>
  4852. </td>
  4853. </tr>
  4854. </tbody>
  4855. </table>
  4856. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  4857. </h3>
  4858. <p>
  4859. (<em>Appears on:</em>
  4860. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4861. </p>
  4862. <p>
  4863. </p>
  4864. <table>
  4865. <thead>
  4866. <tr>
  4867. <th>Field</th>
  4868. <th>Description</th>
  4869. </tr>
  4870. </thead>
  4871. <tbody>
  4872. <tr>
  4873. <td>
  4874. <code>secretAccessKeySecretRef</code></br>
  4875. <em>
  4876. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4877. External Secrets meta/v1.SecretKeySelector
  4878. </a>
  4879. </em>
  4880. </td>
  4881. <td>
  4882. <em>(Optional)</em>
  4883. <p>The SecretAccessKey is used for authentication</p>
  4884. </td>
  4885. </tr>
  4886. </tbody>
  4887. </table>
  4888. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  4889. </h3>
  4890. <p>
  4891. (<em>Appears on:</em>
  4892. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4893. </p>
  4894. <p>
  4895. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  4896. </p>
  4897. <table>
  4898. <thead>
  4899. <tr>
  4900. <th>Field</th>
  4901. <th>Description</th>
  4902. </tr>
  4903. </thead>
  4904. <tbody>
  4905. <tr>
  4906. <td>
  4907. <code>auth</code></br>
  4908. <em>
  4909. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  4910. GCPSMAuth
  4911. </a>
  4912. </em>
  4913. </td>
  4914. <td>
  4915. <em>(Optional)</em>
  4916. <p>Auth defines the information necessary to authenticate against GCP</p>
  4917. </td>
  4918. </tr>
  4919. <tr>
  4920. <td>
  4921. <code>projectID</code></br>
  4922. <em>
  4923. string
  4924. </em>
  4925. </td>
  4926. <td>
  4927. <p>ProjectID project where secret is located</p>
  4928. </td>
  4929. </tr>
  4930. </tbody>
  4931. </table>
  4932. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  4933. </h3>
  4934. <p>
  4935. (<em>Appears on:</em>
  4936. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  4937. </p>
  4938. <p>
  4939. </p>
  4940. <table>
  4941. <thead>
  4942. <tr>
  4943. <th>Field</th>
  4944. <th>Description</th>
  4945. </tr>
  4946. </thead>
  4947. <tbody>
  4948. <tr>
  4949. <td>
  4950. <code>serviceAccountRef</code></br>
  4951. <em>
  4952. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  4953. External Secrets meta/v1.ServiceAccountSelector
  4954. </a>
  4955. </em>
  4956. </td>
  4957. <td>
  4958. </td>
  4959. </tr>
  4960. <tr>
  4961. <td>
  4962. <code>clusterLocation</code></br>
  4963. <em>
  4964. string
  4965. </em>
  4966. </td>
  4967. <td>
  4968. </td>
  4969. </tr>
  4970. <tr>
  4971. <td>
  4972. <code>clusterName</code></br>
  4973. <em>
  4974. string
  4975. </em>
  4976. </td>
  4977. <td>
  4978. </td>
  4979. </tr>
  4980. <tr>
  4981. <td>
  4982. <code>clusterProjectID</code></br>
  4983. <em>
  4984. string
  4985. </em>
  4986. </td>
  4987. <td>
  4988. </td>
  4989. </tr>
  4990. </tbody>
  4991. </table>
  4992. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  4993. </h3>
  4994. <p>
  4995. (<em>Appears on:</em>
  4996. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  4997. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  4998. </p>
  4999. <p>
  5000. <p>GeneratorRef points to a generator custom resource.</p>
  5001. </p>
  5002. <table>
  5003. <thead>
  5004. <tr>
  5005. <th>Field</th>
  5006. <th>Description</th>
  5007. </tr>
  5008. </thead>
  5009. <tbody>
  5010. <tr>
  5011. <td>
  5012. <code>apiVersion</code></br>
  5013. <em>
  5014. string
  5015. </em>
  5016. </td>
  5017. <td>
  5018. <p>Specify the apiVersion of the generator resource</p>
  5019. </td>
  5020. </tr>
  5021. <tr>
  5022. <td>
  5023. <code>kind</code></br>
  5024. <em>
  5025. string
  5026. </em>
  5027. </td>
  5028. <td>
  5029. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  5030. </td>
  5031. </tr>
  5032. <tr>
  5033. <td>
  5034. <code>name</code></br>
  5035. <em>
  5036. string
  5037. </em>
  5038. </td>
  5039. <td>
  5040. <p>Specify the name of the generator resource</p>
  5041. </td>
  5042. </tr>
  5043. </tbody>
  5044. </table>
  5045. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  5046. </h3>
  5047. <p>
  5048. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  5049. or a namespaced SecretStore.</p>
  5050. </p>
  5051. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  5052. </h3>
  5053. <p>
  5054. </p>
  5055. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  5056. </h3>
  5057. <p>
  5058. (<em>Appears on:</em>
  5059. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  5060. </p>
  5061. <p>
  5062. </p>
  5063. <table>
  5064. <thead>
  5065. <tr>
  5066. <th>Field</th>
  5067. <th>Description</th>
  5068. </tr>
  5069. </thead>
  5070. <tbody>
  5071. <tr>
  5072. <td>
  5073. <code>SecretRef</code></br>
  5074. <em>
  5075. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  5076. GitlabSecretRef
  5077. </a>
  5078. </em>
  5079. </td>
  5080. <td>
  5081. </td>
  5082. </tr>
  5083. </tbody>
  5084. </table>
  5085. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  5086. </h3>
  5087. <p>
  5088. (<em>Appears on:</em>
  5089. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5090. </p>
  5091. <p>
  5092. <p>Configures a store to sync secrets with a GitLab instance.</p>
  5093. </p>
  5094. <table>
  5095. <thead>
  5096. <tr>
  5097. <th>Field</th>
  5098. <th>Description</th>
  5099. </tr>
  5100. </thead>
  5101. <tbody>
  5102. <tr>
  5103. <td>
  5104. <code>url</code></br>
  5105. <em>
  5106. string
  5107. </em>
  5108. </td>
  5109. <td>
  5110. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  5111. </td>
  5112. </tr>
  5113. <tr>
  5114. <td>
  5115. <code>auth</code></br>
  5116. <em>
  5117. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  5118. GitlabAuth
  5119. </a>
  5120. </em>
  5121. </td>
  5122. <td>
  5123. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  5124. </td>
  5125. </tr>
  5126. <tr>
  5127. <td>
  5128. <code>projectID</code></br>
  5129. <em>
  5130. string
  5131. </em>
  5132. </td>
  5133. <td>
  5134. <p>ProjectID specifies a project where secrets are located.</p>
  5135. </td>
  5136. </tr>
  5137. <tr>
  5138. <td>
  5139. <code>inheritFromGroups</code></br>
  5140. <em>
  5141. bool
  5142. </em>
  5143. </td>
  5144. <td>
  5145. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  5146. </td>
  5147. </tr>
  5148. <tr>
  5149. <td>
  5150. <code>groupIDs</code></br>
  5151. <em>
  5152. []string
  5153. </em>
  5154. </td>
  5155. <td>
  5156. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  5157. </td>
  5158. </tr>
  5159. <tr>
  5160. <td>
  5161. <code>environment</code></br>
  5162. <em>
  5163. string
  5164. </em>
  5165. </td>
  5166. <td>
  5167. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  5168. </td>
  5169. </tr>
  5170. </tbody>
  5171. </table>
  5172. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  5173. </h3>
  5174. <p>
  5175. (<em>Appears on:</em>
  5176. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  5177. </p>
  5178. <p>
  5179. </p>
  5180. <table>
  5181. <thead>
  5182. <tr>
  5183. <th>Field</th>
  5184. <th>Description</th>
  5185. </tr>
  5186. </thead>
  5187. <tbody>
  5188. <tr>
  5189. <td>
  5190. <code>accessToken</code></br>
  5191. <em>
  5192. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5193. External Secrets meta/v1.SecretKeySelector
  5194. </a>
  5195. </em>
  5196. </td>
  5197. <td>
  5198. <p>AccessToken is used for authentication.</p>
  5199. </td>
  5200. </tr>
  5201. </tbody>
  5202. </table>
  5203. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  5204. </h3>
  5205. <p>
  5206. (<em>Appears on:</em>
  5207. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  5208. </p>
  5209. <p>
  5210. </p>
  5211. <table>
  5212. <thead>
  5213. <tr>
  5214. <th>Field</th>
  5215. <th>Description</th>
  5216. </tr>
  5217. </thead>
  5218. <tbody>
  5219. <tr>
  5220. <td>
  5221. <code>secretRef</code></br>
  5222. <em>
  5223. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  5224. IBMAuthSecretRef
  5225. </a>
  5226. </em>
  5227. </td>
  5228. <td>
  5229. </td>
  5230. </tr>
  5231. <tr>
  5232. <td>
  5233. <code>containerAuth</code></br>
  5234. <em>
  5235. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  5236. IBMAuthContainerAuth
  5237. </a>
  5238. </em>
  5239. </td>
  5240. <td>
  5241. </td>
  5242. </tr>
  5243. </tbody>
  5244. </table>
  5245. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  5246. </h3>
  5247. <p>
  5248. (<em>Appears on:</em>
  5249. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5250. </p>
  5251. <p>
  5252. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  5253. </p>
  5254. <table>
  5255. <thead>
  5256. <tr>
  5257. <th>Field</th>
  5258. <th>Description</th>
  5259. </tr>
  5260. </thead>
  5261. <tbody>
  5262. <tr>
  5263. <td>
  5264. <code>profile</code></br>
  5265. <em>
  5266. string
  5267. </em>
  5268. </td>
  5269. <td>
  5270. <p>the IBM Trusted Profile</p>
  5271. </td>
  5272. </tr>
  5273. <tr>
  5274. <td>
  5275. <code>tokenLocation</code></br>
  5276. <em>
  5277. string
  5278. </em>
  5279. </td>
  5280. <td>
  5281. <p>Location the token is mounted on the pod</p>
  5282. </td>
  5283. </tr>
  5284. <tr>
  5285. <td>
  5286. <code>iamEndpoint</code></br>
  5287. <em>
  5288. string
  5289. </em>
  5290. </td>
  5291. <td>
  5292. </td>
  5293. </tr>
  5294. </tbody>
  5295. </table>
  5296. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  5297. </h3>
  5298. <p>
  5299. (<em>Appears on:</em>
  5300. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  5301. </p>
  5302. <p>
  5303. </p>
  5304. <table>
  5305. <thead>
  5306. <tr>
  5307. <th>Field</th>
  5308. <th>Description</th>
  5309. </tr>
  5310. </thead>
  5311. <tbody>
  5312. <tr>
  5313. <td>
  5314. <code>secretApiKeySecretRef</code></br>
  5315. <em>
  5316. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5317. External Secrets meta/v1.SecretKeySelector
  5318. </a>
  5319. </em>
  5320. </td>
  5321. <td>
  5322. <p>The SecretAccessKey is used for authentication</p>
  5323. </td>
  5324. </tr>
  5325. </tbody>
  5326. </table>
  5327. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  5328. </h3>
  5329. <p>
  5330. (<em>Appears on:</em>
  5331. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5332. </p>
  5333. <p>
  5334. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  5335. backend.</p>
  5336. </p>
  5337. <table>
  5338. <thead>
  5339. <tr>
  5340. <th>Field</th>
  5341. <th>Description</th>
  5342. </tr>
  5343. </thead>
  5344. <tbody>
  5345. <tr>
  5346. <td>
  5347. <code>auth</code></br>
  5348. <em>
  5349. <a href="#external-secrets.io/v1beta1.IBMAuth">
  5350. IBMAuth
  5351. </a>
  5352. </em>
  5353. </td>
  5354. <td>
  5355. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  5356. </td>
  5357. </tr>
  5358. <tr>
  5359. <td>
  5360. <code>serviceUrl</code></br>
  5361. <em>
  5362. string
  5363. </em>
  5364. </td>
  5365. <td>
  5366. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  5367. </td>
  5368. </tr>
  5369. </tbody>
  5370. </table>
  5371. <h3 id="external-secrets.io/v1beta1.KeeperSecurityProvider">KeeperSecurityProvider
  5372. </h3>
  5373. <p>
  5374. (<em>Appears on:</em>
  5375. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5376. </p>
  5377. <p>
  5378. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  5379. </p>
  5380. <table>
  5381. <thead>
  5382. <tr>
  5383. <th>Field</th>
  5384. <th>Description</th>
  5385. </tr>
  5386. </thead>
  5387. <tbody>
  5388. <tr>
  5389. <td>
  5390. <code>authRef</code></br>
  5391. <em>
  5392. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5393. External Secrets meta/v1.SecretKeySelector
  5394. </a>
  5395. </em>
  5396. </td>
  5397. <td>
  5398. </td>
  5399. </tr>
  5400. <tr>
  5401. <td>
  5402. <code>folderID</code></br>
  5403. <em>
  5404. string
  5405. </em>
  5406. </td>
  5407. <td>
  5408. </td>
  5409. </tr>
  5410. </tbody>
  5411. </table>
  5412. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  5413. </h3>
  5414. <p>
  5415. (<em>Appears on:</em>
  5416. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5417. </p>
  5418. <p>
  5419. </p>
  5420. <table>
  5421. <thead>
  5422. <tr>
  5423. <th>Field</th>
  5424. <th>Description</th>
  5425. </tr>
  5426. </thead>
  5427. <tbody>
  5428. <tr>
  5429. <td>
  5430. <code>cert</code></br>
  5431. <em>
  5432. <a href="#external-secrets.io/v1beta1.CertAuth">
  5433. CertAuth
  5434. </a>
  5435. </em>
  5436. </td>
  5437. <td>
  5438. <em>(Optional)</em>
  5439. <p>has both clientCert and clientKey as secretKeySelector</p>
  5440. </td>
  5441. </tr>
  5442. <tr>
  5443. <td>
  5444. <code>token</code></br>
  5445. <em>
  5446. <a href="#external-secrets.io/v1beta1.TokenAuth">
  5447. TokenAuth
  5448. </a>
  5449. </em>
  5450. </td>
  5451. <td>
  5452. <em>(Optional)</em>
  5453. <p>use static token to authenticate with</p>
  5454. </td>
  5455. </tr>
  5456. <tr>
  5457. <td>
  5458. <code>serviceAccount</code></br>
  5459. <em>
  5460. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5461. External Secrets meta/v1.ServiceAccountSelector
  5462. </a>
  5463. </em>
  5464. </td>
  5465. <td>
  5466. <em>(Optional)</em>
  5467. <p>points to a service account that should be used for authentication</p>
  5468. </td>
  5469. </tr>
  5470. </tbody>
  5471. </table>
  5472. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  5473. </h3>
  5474. <p>
  5475. (<em>Appears on:</em>
  5476. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5477. </p>
  5478. <p>
  5479. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  5480. </p>
  5481. <table>
  5482. <thead>
  5483. <tr>
  5484. <th>Field</th>
  5485. <th>Description</th>
  5486. </tr>
  5487. </thead>
  5488. <tbody>
  5489. <tr>
  5490. <td>
  5491. <code>server</code></br>
  5492. <em>
  5493. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  5494. KubernetesServer
  5495. </a>
  5496. </em>
  5497. </td>
  5498. <td>
  5499. <p>configures the Kubernetes server Address.</p>
  5500. </td>
  5501. </tr>
  5502. <tr>
  5503. <td>
  5504. <code>auth</code></br>
  5505. <em>
  5506. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  5507. KubernetesAuth
  5508. </a>
  5509. </em>
  5510. </td>
  5511. <td>
  5512. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  5513. </td>
  5514. </tr>
  5515. <tr>
  5516. <td>
  5517. <code>remoteNamespace</code></br>
  5518. <em>
  5519. string
  5520. </em>
  5521. </td>
  5522. <td>
  5523. <em>(Optional)</em>
  5524. <p>Remote namespace to fetch the secrets from</p>
  5525. </td>
  5526. </tr>
  5527. </tbody>
  5528. </table>
  5529. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  5530. </h3>
  5531. <p>
  5532. (<em>Appears on:</em>
  5533. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  5534. </p>
  5535. <p>
  5536. </p>
  5537. <table>
  5538. <thead>
  5539. <tr>
  5540. <th>Field</th>
  5541. <th>Description</th>
  5542. </tr>
  5543. </thead>
  5544. <tbody>
  5545. <tr>
  5546. <td>
  5547. <code>url</code></br>
  5548. <em>
  5549. string
  5550. </em>
  5551. </td>
  5552. <td>
  5553. <em>(Optional)</em>
  5554. <p>configures the Kubernetes server Address.</p>
  5555. </td>
  5556. </tr>
  5557. <tr>
  5558. <td>
  5559. <code>caBundle</code></br>
  5560. <em>
  5561. []byte
  5562. </em>
  5563. </td>
  5564. <td>
  5565. <em>(Optional)</em>
  5566. <p>CABundle is a base64-encoded CA certificate</p>
  5567. </td>
  5568. </tr>
  5569. <tr>
  5570. <td>
  5571. <code>caProvider</code></br>
  5572. <em>
  5573. <a href="#external-secrets.io/v1beta1.CAProvider">
  5574. CAProvider
  5575. </a>
  5576. </em>
  5577. </td>
  5578. <td>
  5579. <em>(Optional)</em>
  5580. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  5581. </td>
  5582. </tr>
  5583. </tbody>
  5584. </table>
  5585. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  5586. </h3>
  5587. <p>
  5588. <p>NoSecretError shall be returned when a GetSecret can not find the
  5589. desired secret. This is used for deletionPolicy.</p>
  5590. </p>
  5591. <h3 id="external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  5592. </h3>
  5593. <p>
  5594. (<em>Appears on:</em>
  5595. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider</a>)
  5596. </p>
  5597. <p>
  5598. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  5599. </p>
  5600. <table>
  5601. <thead>
  5602. <tr>
  5603. <th>Field</th>
  5604. <th>Description</th>
  5605. </tr>
  5606. </thead>
  5607. <tbody>
  5608. <tr>
  5609. <td>
  5610. <code>apiKeyRef</code></br>
  5611. <em>
  5612. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5613. External Secrets meta/v1.SecretKeySelector
  5614. </a>
  5615. </em>
  5616. </td>
  5617. <td>
  5618. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  5619. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  5620. </td>
  5621. </tr>
  5622. <tr>
  5623. <td>
  5624. <code>passcodeRef</code></br>
  5625. <em>
  5626. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5627. External Secrets meta/v1.SecretKeySelector
  5628. </a>
  5629. </em>
  5630. </td>
  5631. <td>
  5632. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  5633. </td>
  5634. </tr>
  5635. </tbody>
  5636. </table>
  5637. <h3 id="external-secrets.io/v1beta1.OnboardbaseProvider">OnboardbaseProvider
  5638. </h3>
  5639. <p>
  5640. (<em>Appears on:</em>
  5641. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5642. </p>
  5643. <p>
  5644. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  5645. Project and Config are required if not using a Service Token.</p>
  5646. </p>
  5647. <table>
  5648. <thead>
  5649. <tr>
  5650. <th>Field</th>
  5651. <th>Description</th>
  5652. </tr>
  5653. </thead>
  5654. <tbody>
  5655. <tr>
  5656. <td>
  5657. <code>auth</code></br>
  5658. <em>
  5659. <a href="#external-secrets.io/v1beta1.OnboardbaseAuthSecretRef">
  5660. OnboardbaseAuthSecretRef
  5661. </a>
  5662. </em>
  5663. </td>
  5664. <td>
  5665. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  5666. </td>
  5667. </tr>
  5668. <tr>
  5669. <td>
  5670. <code>apiHost</code></br>
  5671. <em>
  5672. string
  5673. </em>
  5674. </td>
  5675. <td>
  5676. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  5677. </td>
  5678. </tr>
  5679. <tr>
  5680. <td>
  5681. <code>project</code></br>
  5682. <em>
  5683. string
  5684. </em>
  5685. </td>
  5686. <td>
  5687. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  5688. </td>
  5689. </tr>
  5690. <tr>
  5691. <td>
  5692. <code>environment</code></br>
  5693. <em>
  5694. string
  5695. </em>
  5696. </td>
  5697. <td>
  5698. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  5699. </td>
  5700. </tr>
  5701. </tbody>
  5702. </table>
  5703. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  5704. </h3>
  5705. <p>
  5706. (<em>Appears on:</em>
  5707. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  5708. </p>
  5709. <p>
  5710. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  5711. </p>
  5712. <table>
  5713. <thead>
  5714. <tr>
  5715. <th>Field</th>
  5716. <th>Description</th>
  5717. </tr>
  5718. </thead>
  5719. <tbody>
  5720. <tr>
  5721. <td>
  5722. <code>secretRef</code></br>
  5723. <em>
  5724. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  5725. OnePasswordAuthSecretRef
  5726. </a>
  5727. </em>
  5728. </td>
  5729. <td>
  5730. </td>
  5731. </tr>
  5732. </tbody>
  5733. </table>
  5734. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  5735. </h3>
  5736. <p>
  5737. (<em>Appears on:</em>
  5738. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  5739. </p>
  5740. <p>
  5741. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  5742. </p>
  5743. <table>
  5744. <thead>
  5745. <tr>
  5746. <th>Field</th>
  5747. <th>Description</th>
  5748. </tr>
  5749. </thead>
  5750. <tbody>
  5751. <tr>
  5752. <td>
  5753. <code>connectTokenSecretRef</code></br>
  5754. <em>
  5755. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5756. External Secrets meta/v1.SecretKeySelector
  5757. </a>
  5758. </em>
  5759. </td>
  5760. <td>
  5761. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  5762. </td>
  5763. </tr>
  5764. </tbody>
  5765. </table>
  5766. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  5767. </h3>
  5768. <p>
  5769. (<em>Appears on:</em>
  5770. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5771. </p>
  5772. <p>
  5773. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  5774. </p>
  5775. <table>
  5776. <thead>
  5777. <tr>
  5778. <th>Field</th>
  5779. <th>Description</th>
  5780. </tr>
  5781. </thead>
  5782. <tbody>
  5783. <tr>
  5784. <td>
  5785. <code>auth</code></br>
  5786. <em>
  5787. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  5788. OnePasswordAuth
  5789. </a>
  5790. </em>
  5791. </td>
  5792. <td>
  5793. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  5794. </td>
  5795. </tr>
  5796. <tr>
  5797. <td>
  5798. <code>connectHost</code></br>
  5799. <em>
  5800. string
  5801. </em>
  5802. </td>
  5803. <td>
  5804. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  5805. </td>
  5806. </tr>
  5807. <tr>
  5808. <td>
  5809. <code>vaults</code></br>
  5810. <em>
  5811. map[string]int
  5812. </em>
  5813. </td>
  5814. <td>
  5815. <p>Vaults defines which OnePassword vaults to search in which order</p>
  5816. </td>
  5817. </tr>
  5818. </tbody>
  5819. </table>
  5820. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  5821. </h3>
  5822. <p>
  5823. (<em>Appears on:</em>
  5824. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5825. </p>
  5826. <p>
  5827. </p>
  5828. <table>
  5829. <thead>
  5830. <tr>
  5831. <th>Field</th>
  5832. <th>Description</th>
  5833. </tr>
  5834. </thead>
  5835. <tbody>
  5836. <tr>
  5837. <td>
  5838. <code>tenancy</code></br>
  5839. <em>
  5840. string
  5841. </em>
  5842. </td>
  5843. <td>
  5844. <p>Tenancy is the tenancy OCID where user is located.</p>
  5845. </td>
  5846. </tr>
  5847. <tr>
  5848. <td>
  5849. <code>user</code></br>
  5850. <em>
  5851. string
  5852. </em>
  5853. </td>
  5854. <td>
  5855. <p>User is an access OCID specific to the account.</p>
  5856. </td>
  5857. </tr>
  5858. <tr>
  5859. <td>
  5860. <code>secretRef</code></br>
  5861. <em>
  5862. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  5863. OracleSecretRef
  5864. </a>
  5865. </em>
  5866. </td>
  5867. <td>
  5868. <p>SecretRef to pass through sensitive information.</p>
  5869. </td>
  5870. </tr>
  5871. </tbody>
  5872. </table>
  5873. <h3 id="external-secrets.io/v1beta1.OraclePrincipalType">OraclePrincipalType
  5874. (<code>string</code> alias)</p></h3>
  5875. <p>
  5876. (<em>Appears on:</em>
  5877. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  5878. </p>
  5879. <p>
  5880. </p>
  5881. <table>
  5882. <thead>
  5883. <tr>
  5884. <th>Value</th>
  5885. <th>Description</th>
  5886. </tr>
  5887. </thead>
  5888. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  5889. <td><p>InstancePrincipal represents a instance principal.</p>
  5890. </td>
  5891. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  5892. <td><p>UserPrincipal represents a user principal.</p>
  5893. </td>
  5894. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  5895. <td><p>WorkloadPrincipal represents a workload principal.</p>
  5896. </td>
  5897. </tr></tbody>
  5898. </table>
  5899. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  5900. </h3>
  5901. <p>
  5902. (<em>Appears on:</em>
  5903. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5904. </p>
  5905. <p>
  5906. <p>Configures an store to sync secrets using a Oracle Vault
  5907. backend.</p>
  5908. </p>
  5909. <table>
  5910. <thead>
  5911. <tr>
  5912. <th>Field</th>
  5913. <th>Description</th>
  5914. </tr>
  5915. </thead>
  5916. <tbody>
  5917. <tr>
  5918. <td>
  5919. <code>region</code></br>
  5920. <em>
  5921. string
  5922. </em>
  5923. </td>
  5924. <td>
  5925. <p>Region is the region where vault is located.</p>
  5926. </td>
  5927. </tr>
  5928. <tr>
  5929. <td>
  5930. <code>vault</code></br>
  5931. <em>
  5932. string
  5933. </em>
  5934. </td>
  5935. <td>
  5936. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  5937. </td>
  5938. </tr>
  5939. <tr>
  5940. <td>
  5941. <code>compartment</code></br>
  5942. <em>
  5943. string
  5944. </em>
  5945. </td>
  5946. <td>
  5947. <em>(Optional)</em>
  5948. <p>Compartment is the vault compartment OCID.
  5949. Required for PushSecret</p>
  5950. </td>
  5951. </tr>
  5952. <tr>
  5953. <td>
  5954. <code>encryptionKey</code></br>
  5955. <em>
  5956. string
  5957. </em>
  5958. </td>
  5959. <td>
  5960. <em>(Optional)</em>
  5961. <p>EncryptionKey is the OCID of the encryption key within the vault.
  5962. Required for PushSecret</p>
  5963. </td>
  5964. </tr>
  5965. <tr>
  5966. <td>
  5967. <code>principalType</code></br>
  5968. <em>
  5969. <a href="#external-secrets.io/v1beta1.OraclePrincipalType">
  5970. OraclePrincipalType
  5971. </a>
  5972. </em>
  5973. </td>
  5974. <td>
  5975. <em>(Optional)</em>
  5976. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  5977. determine the principal type. This optional field must be specified if using
  5978. workload identity.</p>
  5979. </td>
  5980. </tr>
  5981. <tr>
  5982. <td>
  5983. <code>auth</code></br>
  5984. <em>
  5985. <a href="#external-secrets.io/v1beta1.OracleAuth">
  5986. OracleAuth
  5987. </a>
  5988. </em>
  5989. </td>
  5990. <td>
  5991. <em>(Optional)</em>
  5992. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  5993. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  5994. </td>
  5995. </tr>
  5996. <tr>
  5997. <td>
  5998. <code>serviceAccountRef</code></br>
  5999. <em>
  6000. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6001. External Secrets meta/v1.ServiceAccountSelector
  6002. </a>
  6003. </em>
  6004. </td>
  6005. <td>
  6006. <em>(Optional)</em>
  6007. <p>ServiceAccountRef specified the service account
  6008. that should be used when authenticating with WorkloadIdentity.</p>
  6009. </td>
  6010. </tr>
  6011. </tbody>
  6012. </table>
  6013. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  6014. </h3>
  6015. <p>
  6016. (<em>Appears on:</em>
  6017. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  6018. </p>
  6019. <p>
  6020. </p>
  6021. <table>
  6022. <thead>
  6023. <tr>
  6024. <th>Field</th>
  6025. <th>Description</th>
  6026. </tr>
  6027. </thead>
  6028. <tbody>
  6029. <tr>
  6030. <td>
  6031. <code>privatekey</code></br>
  6032. <em>
  6033. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6034. External Secrets meta/v1.SecretKeySelector
  6035. </a>
  6036. </em>
  6037. </td>
  6038. <td>
  6039. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  6040. </td>
  6041. </tr>
  6042. <tr>
  6043. <td>
  6044. <code>fingerprint</code></br>
  6045. <em>
  6046. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6047. External Secrets meta/v1.SecretKeySelector
  6048. </a>
  6049. </em>
  6050. </td>
  6051. <td>
  6052. <p>Fingerprint is the fingerprint of the API private key.</p>
  6053. </td>
  6054. </tr>
  6055. </tbody>
  6056. </table>
  6057. <h3 id="external-secrets.io/v1beta1.PassboltAuth">PassboltAuth
  6058. </h3>
  6059. <p>
  6060. (<em>Appears on:</em>
  6061. <a href="#external-secrets.io/v1beta1.PassboltProvider">PassboltProvider</a>)
  6062. </p>
  6063. <p>
  6064. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  6065. </p>
  6066. <table>
  6067. <thead>
  6068. <tr>
  6069. <th>Field</th>
  6070. <th>Description</th>
  6071. </tr>
  6072. </thead>
  6073. <tbody>
  6074. <tr>
  6075. <td>
  6076. <code>passwordSecretRef</code></br>
  6077. <em>
  6078. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6079. External Secrets meta/v1.SecretKeySelector
  6080. </a>
  6081. </em>
  6082. </td>
  6083. <td>
  6084. </td>
  6085. </tr>
  6086. <tr>
  6087. <td>
  6088. <code>privateKeySecretRef</code></br>
  6089. <em>
  6090. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6091. External Secrets meta/v1.SecretKeySelector
  6092. </a>
  6093. </em>
  6094. </td>
  6095. <td>
  6096. </td>
  6097. </tr>
  6098. </tbody>
  6099. </table>
  6100. <h3 id="external-secrets.io/v1beta1.PassboltProvider">PassboltProvider
  6101. </h3>
  6102. <p>
  6103. (<em>Appears on:</em>
  6104. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6105. </p>
  6106. <p>
  6107. </p>
  6108. <table>
  6109. <thead>
  6110. <tr>
  6111. <th>Field</th>
  6112. <th>Description</th>
  6113. </tr>
  6114. </thead>
  6115. <tbody>
  6116. <tr>
  6117. <td>
  6118. <code>auth</code></br>
  6119. <em>
  6120. <a href="#external-secrets.io/v1beta1.PassboltAuth">
  6121. PassboltAuth
  6122. </a>
  6123. </em>
  6124. </td>
  6125. <td>
  6126. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  6127. </td>
  6128. </tr>
  6129. <tr>
  6130. <td>
  6131. <code>host</code></br>
  6132. <em>
  6133. string
  6134. </em>
  6135. </td>
  6136. <td>
  6137. <p>Host defines the Passbolt Server to connect to</p>
  6138. </td>
  6139. </tr>
  6140. </tbody>
  6141. </table>
  6142. <h3 id="external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth
  6143. </h3>
  6144. <p>
  6145. (<em>Appears on:</em>
  6146. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider</a>)
  6147. </p>
  6148. <p>
  6149. </p>
  6150. <table>
  6151. <thead>
  6152. <tr>
  6153. <th>Field</th>
  6154. <th>Description</th>
  6155. </tr>
  6156. </thead>
  6157. <tbody>
  6158. <tr>
  6159. <td>
  6160. <code>secretRef</code></br>
  6161. <em>
  6162. <a href="#external-secrets.io/v1beta1.PasswordDepotSecretRef">
  6163. PasswordDepotSecretRef
  6164. </a>
  6165. </em>
  6166. </td>
  6167. <td>
  6168. </td>
  6169. </tr>
  6170. </tbody>
  6171. </table>
  6172. <h3 id="external-secrets.io/v1beta1.PasswordDepotProvider">PasswordDepotProvider
  6173. </h3>
  6174. <p>
  6175. (<em>Appears on:</em>
  6176. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6177. </p>
  6178. <p>
  6179. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  6180. </p>
  6181. <table>
  6182. <thead>
  6183. <tr>
  6184. <th>Field</th>
  6185. <th>Description</th>
  6186. </tr>
  6187. </thead>
  6188. <tbody>
  6189. <tr>
  6190. <td>
  6191. <code>host</code></br>
  6192. <em>
  6193. string
  6194. </em>
  6195. </td>
  6196. <td>
  6197. <p>URL configures the Password Depot instance URL.</p>
  6198. </td>
  6199. </tr>
  6200. <tr>
  6201. <td>
  6202. <code>database</code></br>
  6203. <em>
  6204. string
  6205. </em>
  6206. </td>
  6207. <td>
  6208. <p>Database to use as source</p>
  6209. </td>
  6210. </tr>
  6211. <tr>
  6212. <td>
  6213. <code>auth</code></br>
  6214. <em>
  6215. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">
  6216. PasswordDepotAuth
  6217. </a>
  6218. </em>
  6219. </td>
  6220. <td>
  6221. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  6222. </td>
  6223. </tr>
  6224. </tbody>
  6225. </table>
  6226. <h3 id="external-secrets.io/v1beta1.PasswordDepotSecretRef">PasswordDepotSecretRef
  6227. </h3>
  6228. <p>
  6229. (<em>Appears on:</em>
  6230. <a href="#external-secrets.io/v1beta1.PasswordDepotAuth">PasswordDepotAuth</a>)
  6231. </p>
  6232. <p>
  6233. </p>
  6234. <table>
  6235. <thead>
  6236. <tr>
  6237. <th>Field</th>
  6238. <th>Description</th>
  6239. </tr>
  6240. </thead>
  6241. <tbody>
  6242. <tr>
  6243. <td>
  6244. <code>credentials</code></br>
  6245. <em>
  6246. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6247. External Secrets meta/v1.SecretKeySelector
  6248. </a>
  6249. </em>
  6250. </td>
  6251. <td>
  6252. <em>(Optional)</em>
  6253. <p>Username / Password is used for authentication.</p>
  6254. </td>
  6255. </tr>
  6256. </tbody>
  6257. </table>
  6258. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  6259. </h3>
  6260. <p>
  6261. <p>Provider is a common interface for interacting with secret backends.</p>
  6262. </p>
  6263. <h3 id="external-secrets.io/v1beta1.PulumiProvider">PulumiProvider
  6264. </h3>
  6265. <p>
  6266. (<em>Appears on:</em>
  6267. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6268. </p>
  6269. <p>
  6270. </p>
  6271. <table>
  6272. <thead>
  6273. <tr>
  6274. <th>Field</th>
  6275. <th>Description</th>
  6276. </tr>
  6277. </thead>
  6278. <tbody>
  6279. <tr>
  6280. <td>
  6281. <code>apiUrl</code></br>
  6282. <em>
  6283. string
  6284. </em>
  6285. </td>
  6286. <td>
  6287. <p>APIURL is the URL of the Pulumi API.</p>
  6288. </td>
  6289. </tr>
  6290. <tr>
  6291. <td>
  6292. <code>accessToken</code></br>
  6293. <em>
  6294. <a href="#external-secrets.io/v1beta1.PulumiProviderSecretRef">
  6295. PulumiProviderSecretRef
  6296. </a>
  6297. </em>
  6298. </td>
  6299. <td>
  6300. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  6301. </td>
  6302. </tr>
  6303. <tr>
  6304. <td>
  6305. <code>organization</code></br>
  6306. <em>
  6307. string
  6308. </em>
  6309. </td>
  6310. <td>
  6311. <p>Organization are a space to collaborate on shared projects and stacks.
  6312. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  6313. </td>
  6314. </tr>
  6315. <tr>
  6316. <td>
  6317. <code>environment</code></br>
  6318. <em>
  6319. string
  6320. </em>
  6321. </td>
  6322. <td>
  6323. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  6324. dynamically retrieved values from supported providers including all major clouds,
  6325. and other Pulumi ESC environments.
  6326. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  6327. </td>
  6328. </tr>
  6329. </tbody>
  6330. </table>
  6331. <h3 id="external-secrets.io/v1beta1.PulumiProviderSecretRef">PulumiProviderSecretRef
  6332. </h3>
  6333. <p>
  6334. (<em>Appears on:</em>
  6335. <a href="#external-secrets.io/v1beta1.PulumiProvider">PulumiProvider</a>)
  6336. </p>
  6337. <p>
  6338. </p>
  6339. <table>
  6340. <thead>
  6341. <tr>
  6342. <th>Field</th>
  6343. <th>Description</th>
  6344. </tr>
  6345. </thead>
  6346. <tbody>
  6347. <tr>
  6348. <td>
  6349. <code>secretRef</code></br>
  6350. <em>
  6351. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6352. External Secrets meta/v1.SecretKeySelector
  6353. </a>
  6354. </em>
  6355. </td>
  6356. <td>
  6357. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  6358. </td>
  6359. </tr>
  6360. </tbody>
  6361. </table>
  6362. <h3 id="external-secrets.io/v1beta1.PushSecretData">PushSecretData
  6363. </h3>
  6364. <p>
  6365. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1beta1.</p>
  6366. </p>
  6367. <h3 id="external-secrets.io/v1beta1.PushSecretRemoteRef">PushSecretRemoteRef
  6368. </h3>
  6369. <p>
  6370. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1beta1.</p>
  6371. </p>
  6372. <h3 id="external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider
  6373. </h3>
  6374. <p>
  6375. (<em>Appears on:</em>
  6376. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6377. </p>
  6378. <p>
  6379. </p>
  6380. <table>
  6381. <thead>
  6382. <tr>
  6383. <th>Field</th>
  6384. <th>Description</th>
  6385. </tr>
  6386. </thead>
  6387. <tbody>
  6388. <tr>
  6389. <td>
  6390. <code>apiUrl</code></br>
  6391. <em>
  6392. string
  6393. </em>
  6394. </td>
  6395. <td>
  6396. <em>(Optional)</em>
  6397. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  6398. </td>
  6399. </tr>
  6400. <tr>
  6401. <td>
  6402. <code>region</code></br>
  6403. <em>
  6404. string
  6405. </em>
  6406. </td>
  6407. <td>
  6408. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  6409. </td>
  6410. </tr>
  6411. <tr>
  6412. <td>
  6413. <code>projectId</code></br>
  6414. <em>
  6415. string
  6416. </em>
  6417. </td>
  6418. <td>
  6419. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  6420. </td>
  6421. </tr>
  6422. <tr>
  6423. <td>
  6424. <code>accessKey</code></br>
  6425. <em>
  6426. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6427. ScalewayProviderSecretRef
  6428. </a>
  6429. </em>
  6430. </td>
  6431. <td>
  6432. <p>AccessKey is the non-secret part of the api key.</p>
  6433. </td>
  6434. </tr>
  6435. <tr>
  6436. <td>
  6437. <code>secretKey</code></br>
  6438. <em>
  6439. <a href="#external-secrets.io/v1beta1.ScalewayProviderSecretRef">
  6440. ScalewayProviderSecretRef
  6441. </a>
  6442. </em>
  6443. </td>
  6444. <td>
  6445. <p>SecretKey is the non-secret part of the api key.</p>
  6446. </td>
  6447. </tr>
  6448. </tbody>
  6449. </table>
  6450. <h3 id="external-secrets.io/v1beta1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  6451. </h3>
  6452. <p>
  6453. (<em>Appears on:</em>
  6454. <a href="#external-secrets.io/v1beta1.ScalewayProvider">ScalewayProvider</a>)
  6455. </p>
  6456. <p>
  6457. </p>
  6458. <table>
  6459. <thead>
  6460. <tr>
  6461. <th>Field</th>
  6462. <th>Description</th>
  6463. </tr>
  6464. </thead>
  6465. <tbody>
  6466. <tr>
  6467. <td>
  6468. <code>value</code></br>
  6469. <em>
  6470. string
  6471. </em>
  6472. </td>
  6473. <td>
  6474. <em>(Optional)</em>
  6475. <p>Value can be specified directly to set a value without using a secret.</p>
  6476. </td>
  6477. </tr>
  6478. <tr>
  6479. <td>
  6480. <code>secretRef</code></br>
  6481. <em>
  6482. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6483. External Secrets meta/v1.SecretKeySelector
  6484. </a>
  6485. </em>
  6486. </td>
  6487. <td>
  6488. <em>(Optional)</em>
  6489. <p>SecretRef references a key in a secret that will be used as value.</p>
  6490. </td>
  6491. </tr>
  6492. </tbody>
  6493. </table>
  6494. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  6495. </h3>
  6496. <p>
  6497. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  6498. </p>
  6499. <table>
  6500. <thead>
  6501. <tr>
  6502. <th>Field</th>
  6503. <th>Description</th>
  6504. </tr>
  6505. </thead>
  6506. <tbody>
  6507. <tr>
  6508. <td>
  6509. <code>metadata</code></br>
  6510. <em>
  6511. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  6512. Kubernetes meta/v1.ObjectMeta
  6513. </a>
  6514. </em>
  6515. </td>
  6516. <td>
  6517. Refer to the Kubernetes API documentation for the fields of the
  6518. <code>metadata</code> field.
  6519. </td>
  6520. </tr>
  6521. <tr>
  6522. <td>
  6523. <code>spec</code></br>
  6524. <em>
  6525. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  6526. SecretStoreSpec
  6527. </a>
  6528. </em>
  6529. </td>
  6530. <td>
  6531. <br/>
  6532. <br/>
  6533. <table>
  6534. <tr>
  6535. <td>
  6536. <code>controller</code></br>
  6537. <em>
  6538. string
  6539. </em>
  6540. </td>
  6541. <td>
  6542. <em>(Optional)</em>
  6543. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  6544. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  6545. </td>
  6546. </tr>
  6547. <tr>
  6548. <td>
  6549. <code>provider</code></br>
  6550. <em>
  6551. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  6552. SecretStoreProvider
  6553. </a>
  6554. </em>
  6555. </td>
  6556. <td>
  6557. <p>Used to configure the provider. Only one provider may be set</p>
  6558. </td>
  6559. </tr>
  6560. <tr>
  6561. <td>
  6562. <code>retrySettings</code></br>
  6563. <em>
  6564. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  6565. SecretStoreRetrySettings
  6566. </a>
  6567. </em>
  6568. </td>
  6569. <td>
  6570. <em>(Optional)</em>
  6571. <p>Used to configure http retries if failed</p>
  6572. </td>
  6573. </tr>
  6574. <tr>
  6575. <td>
  6576. <code>refreshInterval</code></br>
  6577. <em>
  6578. int
  6579. </em>
  6580. </td>
  6581. <td>
  6582. <em>(Optional)</em>
  6583. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  6584. </td>
  6585. </tr>
  6586. <tr>
  6587. <td>
  6588. <code>conditions</code></br>
  6589. <em>
  6590. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  6591. []ClusterSecretStoreCondition
  6592. </a>
  6593. </em>
  6594. </td>
  6595. <td>
  6596. <em>(Optional)</em>
  6597. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  6598. </td>
  6599. </tr>
  6600. </table>
  6601. </td>
  6602. </tr>
  6603. <tr>
  6604. <td>
  6605. <code>status</code></br>
  6606. <em>
  6607. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  6608. SecretStoreStatus
  6609. </a>
  6610. </em>
  6611. </td>
  6612. <td>
  6613. </td>
  6614. </tr>
  6615. </tbody>
  6616. </table>
  6617. <h3 id="external-secrets.io/v1beta1.SecretStoreCapabilities">SecretStoreCapabilities
  6618. (<code>string</code> alias)</p></h3>
  6619. <p>
  6620. (<em>Appears on:</em>
  6621. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  6622. </p>
  6623. <p>
  6624. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  6625. </p>
  6626. <table>
  6627. <thead>
  6628. <tr>
  6629. <th>Value</th>
  6630. <th>Description</th>
  6631. </tr>
  6632. </thead>
  6633. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  6634. <td></td>
  6635. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  6636. <td></td>
  6637. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  6638. <td></td>
  6639. </tr></tbody>
  6640. </table>
  6641. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  6642. (<code>string</code> alias)</p></h3>
  6643. <p>
  6644. (<em>Appears on:</em>
  6645. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  6646. </p>
  6647. <p>
  6648. </p>
  6649. <table>
  6650. <thead>
  6651. <tr>
  6652. <th>Value</th>
  6653. <th>Description</th>
  6654. </tr>
  6655. </thead>
  6656. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  6657. <td></td>
  6658. </tr></tbody>
  6659. </table>
  6660. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  6661. </h3>
  6662. <p>
  6663. (<em>Appears on:</em>
  6664. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  6665. </p>
  6666. <p>
  6667. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  6668. </p>
  6669. <table>
  6670. <thead>
  6671. <tr>
  6672. <th>Field</th>
  6673. <th>Description</th>
  6674. </tr>
  6675. </thead>
  6676. <tbody>
  6677. <tr>
  6678. <td>
  6679. <code>aws</code></br>
  6680. <em>
  6681. <a href="#external-secrets.io/v1beta1.AWSProvider">
  6682. AWSProvider
  6683. </a>
  6684. </em>
  6685. </td>
  6686. <td>
  6687. <em>(Optional)</em>
  6688. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  6689. </td>
  6690. </tr>
  6691. <tr>
  6692. <td>
  6693. <code>azurekv</code></br>
  6694. <em>
  6695. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  6696. AzureKVProvider
  6697. </a>
  6698. </em>
  6699. </td>
  6700. <td>
  6701. <em>(Optional)</em>
  6702. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  6703. </td>
  6704. </tr>
  6705. <tr>
  6706. <td>
  6707. <code>akeyless</code></br>
  6708. <em>
  6709. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  6710. AkeylessProvider
  6711. </a>
  6712. </em>
  6713. </td>
  6714. <td>
  6715. <em>(Optional)</em>
  6716. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  6717. </td>
  6718. </tr>
  6719. <tr>
  6720. <td>
  6721. <code>vault</code></br>
  6722. <em>
  6723. <a href="#external-secrets.io/v1beta1.VaultProvider">
  6724. VaultProvider
  6725. </a>
  6726. </em>
  6727. </td>
  6728. <td>
  6729. <em>(Optional)</em>
  6730. <p>Vault configures this store to sync secrets using Hashi provider</p>
  6731. </td>
  6732. </tr>
  6733. <tr>
  6734. <td>
  6735. <code>gcpsm</code></br>
  6736. <em>
  6737. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  6738. GCPSMProvider
  6739. </a>
  6740. </em>
  6741. </td>
  6742. <td>
  6743. <em>(Optional)</em>
  6744. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  6745. </td>
  6746. </tr>
  6747. <tr>
  6748. <td>
  6749. <code>oracle</code></br>
  6750. <em>
  6751. <a href="#external-secrets.io/v1beta1.OracleProvider">
  6752. OracleProvider
  6753. </a>
  6754. </em>
  6755. </td>
  6756. <td>
  6757. <em>(Optional)</em>
  6758. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  6759. </td>
  6760. </tr>
  6761. <tr>
  6762. <td>
  6763. <code>ibm</code></br>
  6764. <em>
  6765. <a href="#external-secrets.io/v1beta1.IBMProvider">
  6766. IBMProvider
  6767. </a>
  6768. </em>
  6769. </td>
  6770. <td>
  6771. <em>(Optional)</em>
  6772. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  6773. </td>
  6774. </tr>
  6775. <tr>
  6776. <td>
  6777. <code>yandexcertificatemanager</code></br>
  6778. <em>
  6779. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  6780. YandexCertificateManagerProvider
  6781. </a>
  6782. </em>
  6783. </td>
  6784. <td>
  6785. <em>(Optional)</em>
  6786. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  6787. </td>
  6788. </tr>
  6789. <tr>
  6790. <td>
  6791. <code>yandexlockbox</code></br>
  6792. <em>
  6793. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  6794. YandexLockboxProvider
  6795. </a>
  6796. </em>
  6797. </td>
  6798. <td>
  6799. <em>(Optional)</em>
  6800. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  6801. </td>
  6802. </tr>
  6803. <tr>
  6804. <td>
  6805. <code>gitlab</code></br>
  6806. <em>
  6807. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  6808. GitlabProvider
  6809. </a>
  6810. </em>
  6811. </td>
  6812. <td>
  6813. <em>(Optional)</em>
  6814. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  6815. </td>
  6816. </tr>
  6817. <tr>
  6818. <td>
  6819. <code>alibaba</code></br>
  6820. <em>
  6821. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  6822. AlibabaProvider
  6823. </a>
  6824. </em>
  6825. </td>
  6826. <td>
  6827. <em>(Optional)</em>
  6828. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  6829. </td>
  6830. </tr>
  6831. <tr>
  6832. <td>
  6833. <code>onepassword</code></br>
  6834. <em>
  6835. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  6836. OnePasswordProvider
  6837. </a>
  6838. </em>
  6839. </td>
  6840. <td>
  6841. <em>(Optional)</em>
  6842. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  6843. </td>
  6844. </tr>
  6845. <tr>
  6846. <td>
  6847. <code>webhook</code></br>
  6848. <em>
  6849. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  6850. WebhookProvider
  6851. </a>
  6852. </em>
  6853. </td>
  6854. <td>
  6855. <em>(Optional)</em>
  6856. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  6857. </td>
  6858. </tr>
  6859. <tr>
  6860. <td>
  6861. <code>kubernetes</code></br>
  6862. <em>
  6863. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  6864. KubernetesProvider
  6865. </a>
  6866. </em>
  6867. </td>
  6868. <td>
  6869. <em>(Optional)</em>
  6870. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  6871. </td>
  6872. </tr>
  6873. <tr>
  6874. <td>
  6875. <code>fake</code></br>
  6876. <em>
  6877. <a href="#external-secrets.io/v1beta1.FakeProvider">
  6878. FakeProvider
  6879. </a>
  6880. </em>
  6881. </td>
  6882. <td>
  6883. <em>(Optional)</em>
  6884. <p>Fake configures a store with static key/value pairs</p>
  6885. </td>
  6886. </tr>
  6887. <tr>
  6888. <td>
  6889. <code>senhasegura</code></br>
  6890. <em>
  6891. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  6892. SenhaseguraProvider
  6893. </a>
  6894. </em>
  6895. </td>
  6896. <td>
  6897. <em>(Optional)</em>
  6898. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  6899. </td>
  6900. </tr>
  6901. <tr>
  6902. <td>
  6903. <code>scaleway</code></br>
  6904. <em>
  6905. <a href="#external-secrets.io/v1beta1.ScalewayProvider">
  6906. ScalewayProvider
  6907. </a>
  6908. </em>
  6909. </td>
  6910. <td>
  6911. <em>(Optional)</em>
  6912. <p>Scaleway</p>
  6913. </td>
  6914. </tr>
  6915. <tr>
  6916. <td>
  6917. <code>doppler</code></br>
  6918. <em>
  6919. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  6920. DopplerProvider
  6921. </a>
  6922. </em>
  6923. </td>
  6924. <td>
  6925. <em>(Optional)</em>
  6926. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  6927. </td>
  6928. </tr>
  6929. <tr>
  6930. <td>
  6931. <code>onboardbase</code></br>
  6932. <em>
  6933. <a href="#external-secrets.io/v1beta1.OnboardbaseProvider">
  6934. OnboardbaseProvider
  6935. </a>
  6936. </em>
  6937. </td>
  6938. <td>
  6939. <em>(Optional)</em>
  6940. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  6941. </td>
  6942. </tr>
  6943. <tr>
  6944. <td>
  6945. <code>keepersecurity</code></br>
  6946. <em>
  6947. <a href="#external-secrets.io/v1beta1.KeeperSecurityProvider">
  6948. KeeperSecurityProvider
  6949. </a>
  6950. </em>
  6951. </td>
  6952. <td>
  6953. <em>(Optional)</em>
  6954. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  6955. </td>
  6956. </tr>
  6957. <tr>
  6958. <td>
  6959. <code>conjur</code></br>
  6960. <em>
  6961. <a href="#external-secrets.io/v1beta1.ConjurProvider">
  6962. ConjurProvider
  6963. </a>
  6964. </em>
  6965. </td>
  6966. <td>
  6967. <em>(Optional)</em>
  6968. <p>Conjur configures this store to sync secrets using conjur provider</p>
  6969. </td>
  6970. </tr>
  6971. <tr>
  6972. <td>
  6973. <code>delinea</code></br>
  6974. <em>
  6975. <a href="#external-secrets.io/v1beta1.DelineaProvider">
  6976. DelineaProvider
  6977. </a>
  6978. </em>
  6979. </td>
  6980. <td>
  6981. <em>(Optional)</em>
  6982. <p>Delinea DevOps Secrets Vault
  6983. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  6984. </td>
  6985. </tr>
  6986. <tr>
  6987. <td>
  6988. <code>chef</code></br>
  6989. <em>
  6990. <a href="#external-secrets.io/v1beta1.ChefProvider">
  6991. ChefProvider
  6992. </a>
  6993. </em>
  6994. </td>
  6995. <td>
  6996. <em>(Optional)</em>
  6997. <p>Chef configures this store to sync secrets with chef server</p>
  6998. </td>
  6999. </tr>
  7000. <tr>
  7001. <td>
  7002. <code>pulumi</code></br>
  7003. <em>
  7004. <a href="#external-secrets.io/v1beta1.PulumiProvider">
  7005. PulumiProvider
  7006. </a>
  7007. </em>
  7008. </td>
  7009. <td>
  7010. <em>(Optional)</em>
  7011. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  7012. </td>
  7013. </tr>
  7014. <tr>
  7015. <td>
  7016. <code>fortanix</code></br>
  7017. <em>
  7018. <a href="#external-secrets.io/v1beta1.FortanixProvider">
  7019. FortanixProvider
  7020. </a>
  7021. </em>
  7022. </td>
  7023. <td>
  7024. <em>(Optional)</em>
  7025. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  7026. </td>
  7027. </tr>
  7028. <tr>
  7029. <td>
  7030. <code>passworddepot</code></br>
  7031. <em>
  7032. <a href="#external-secrets.io/v1beta1.PasswordDepotProvider">
  7033. PasswordDepotProvider
  7034. </a>
  7035. </em>
  7036. </td>
  7037. <td>
  7038. <em>(Optional)</em>
  7039. </td>
  7040. </tr>
  7041. <tr>
  7042. <td>
  7043. <code>passbolt</code></br>
  7044. <em>
  7045. <a href="#external-secrets.io/v1beta1.PassboltProvider">
  7046. PassboltProvider
  7047. </a>
  7048. </em>
  7049. </td>
  7050. <td>
  7051. <em>(Optional)</em>
  7052. </td>
  7053. </tr>
  7054. </tbody>
  7055. </table>
  7056. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  7057. </h3>
  7058. <p>
  7059. (<em>Appears on:</em>
  7060. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  7061. <a href="#external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  7062. <a href="#external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef</a>)
  7063. </p>
  7064. <p>
  7065. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  7066. </p>
  7067. <table>
  7068. <thead>
  7069. <tr>
  7070. <th>Field</th>
  7071. <th>Description</th>
  7072. </tr>
  7073. </thead>
  7074. <tbody>
  7075. <tr>
  7076. <td>
  7077. <code>name</code></br>
  7078. <em>
  7079. string
  7080. </em>
  7081. </td>
  7082. <td>
  7083. <p>Name of the SecretStore resource</p>
  7084. </td>
  7085. </tr>
  7086. <tr>
  7087. <td>
  7088. <code>kind</code></br>
  7089. <em>
  7090. string
  7091. </em>
  7092. </td>
  7093. <td>
  7094. <em>(Optional)</em>
  7095. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  7096. Defaults to <code>SecretStore</code></p>
  7097. </td>
  7098. </tr>
  7099. </tbody>
  7100. </table>
  7101. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  7102. </h3>
  7103. <p>
  7104. (<em>Appears on:</em>
  7105. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  7106. </p>
  7107. <p>
  7108. </p>
  7109. <table>
  7110. <thead>
  7111. <tr>
  7112. <th>Field</th>
  7113. <th>Description</th>
  7114. </tr>
  7115. </thead>
  7116. <tbody>
  7117. <tr>
  7118. <td>
  7119. <code>maxRetries</code></br>
  7120. <em>
  7121. int32
  7122. </em>
  7123. </td>
  7124. <td>
  7125. </td>
  7126. </tr>
  7127. <tr>
  7128. <td>
  7129. <code>retryInterval</code></br>
  7130. <em>
  7131. string
  7132. </em>
  7133. </td>
  7134. <td>
  7135. </td>
  7136. </tr>
  7137. </tbody>
  7138. </table>
  7139. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  7140. </h3>
  7141. <p>
  7142. (<em>Appears on:</em>
  7143. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7144. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7145. </p>
  7146. <p>
  7147. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  7148. </p>
  7149. <table>
  7150. <thead>
  7151. <tr>
  7152. <th>Field</th>
  7153. <th>Description</th>
  7154. </tr>
  7155. </thead>
  7156. <tbody>
  7157. <tr>
  7158. <td>
  7159. <code>controller</code></br>
  7160. <em>
  7161. string
  7162. </em>
  7163. </td>
  7164. <td>
  7165. <em>(Optional)</em>
  7166. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  7167. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  7168. </td>
  7169. </tr>
  7170. <tr>
  7171. <td>
  7172. <code>provider</code></br>
  7173. <em>
  7174. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  7175. SecretStoreProvider
  7176. </a>
  7177. </em>
  7178. </td>
  7179. <td>
  7180. <p>Used to configure the provider. Only one provider may be set</p>
  7181. </td>
  7182. </tr>
  7183. <tr>
  7184. <td>
  7185. <code>retrySettings</code></br>
  7186. <em>
  7187. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  7188. SecretStoreRetrySettings
  7189. </a>
  7190. </em>
  7191. </td>
  7192. <td>
  7193. <em>(Optional)</em>
  7194. <p>Used to configure http retries if failed</p>
  7195. </td>
  7196. </tr>
  7197. <tr>
  7198. <td>
  7199. <code>refreshInterval</code></br>
  7200. <em>
  7201. int
  7202. </em>
  7203. </td>
  7204. <td>
  7205. <em>(Optional)</em>
  7206. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  7207. </td>
  7208. </tr>
  7209. <tr>
  7210. <td>
  7211. <code>conditions</code></br>
  7212. <em>
  7213. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  7214. []ClusterSecretStoreCondition
  7215. </a>
  7216. </em>
  7217. </td>
  7218. <td>
  7219. <em>(Optional)</em>
  7220. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  7221. </td>
  7222. </tr>
  7223. </tbody>
  7224. </table>
  7225. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  7226. </h3>
  7227. <p>
  7228. (<em>Appears on:</em>
  7229. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  7230. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  7231. </p>
  7232. <p>
  7233. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  7234. </p>
  7235. <table>
  7236. <thead>
  7237. <tr>
  7238. <th>Field</th>
  7239. <th>Description</th>
  7240. </tr>
  7241. </thead>
  7242. <tbody>
  7243. <tr>
  7244. <td>
  7245. <code>conditions</code></br>
  7246. <em>
  7247. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  7248. []SecretStoreStatusCondition
  7249. </a>
  7250. </em>
  7251. </td>
  7252. <td>
  7253. <em>(Optional)</em>
  7254. </td>
  7255. </tr>
  7256. <tr>
  7257. <td>
  7258. <code>capabilities</code></br>
  7259. <em>
  7260. <a href="#external-secrets.io/v1beta1.SecretStoreCapabilities">
  7261. SecretStoreCapabilities
  7262. </a>
  7263. </em>
  7264. </td>
  7265. <td>
  7266. <em>(Optional)</em>
  7267. </td>
  7268. </tr>
  7269. </tbody>
  7270. </table>
  7271. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  7272. </h3>
  7273. <p>
  7274. (<em>Appears on:</em>
  7275. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  7276. </p>
  7277. <p>
  7278. </p>
  7279. <table>
  7280. <thead>
  7281. <tr>
  7282. <th>Field</th>
  7283. <th>Description</th>
  7284. </tr>
  7285. </thead>
  7286. <tbody>
  7287. <tr>
  7288. <td>
  7289. <code>type</code></br>
  7290. <em>
  7291. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  7292. SecretStoreConditionType
  7293. </a>
  7294. </em>
  7295. </td>
  7296. <td>
  7297. </td>
  7298. </tr>
  7299. <tr>
  7300. <td>
  7301. <code>status</code></br>
  7302. <em>
  7303. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  7304. Kubernetes core/v1.ConditionStatus
  7305. </a>
  7306. </em>
  7307. </td>
  7308. <td>
  7309. </td>
  7310. </tr>
  7311. <tr>
  7312. <td>
  7313. <code>reason</code></br>
  7314. <em>
  7315. string
  7316. </em>
  7317. </td>
  7318. <td>
  7319. <em>(Optional)</em>
  7320. </td>
  7321. </tr>
  7322. <tr>
  7323. <td>
  7324. <code>message</code></br>
  7325. <em>
  7326. string
  7327. </em>
  7328. </td>
  7329. <td>
  7330. <em>(Optional)</em>
  7331. </td>
  7332. </tr>
  7333. <tr>
  7334. <td>
  7335. <code>lastTransitionTime</code></br>
  7336. <em>
  7337. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  7338. Kubernetes meta/v1.Time
  7339. </a>
  7340. </em>
  7341. </td>
  7342. <td>
  7343. <em>(Optional)</em>
  7344. </td>
  7345. </tr>
  7346. </tbody>
  7347. </table>
  7348. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  7349. </h3>
  7350. <p>
  7351. <p>SecretsClient provides access to secrets.</p>
  7352. </p>
  7353. <h3 id="external-secrets.io/v1beta1.SecretsManager">SecretsManager
  7354. </h3>
  7355. <p>
  7356. (<em>Appears on:</em>
  7357. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  7358. </p>
  7359. <p>
  7360. <p>SecretsManager defines how the provider behaves when interacting with AWS
  7361. SecretsManager. Some of these settings are only applicable to controlling how
  7362. secrets are deleted, and hence only apply to PushSecret (and only when
  7363. deletionPolicy is set to Delete).</p>
  7364. </p>
  7365. <table>
  7366. <thead>
  7367. <tr>
  7368. <th>Field</th>
  7369. <th>Description</th>
  7370. </tr>
  7371. </thead>
  7372. <tbody>
  7373. <tr>
  7374. <td>
  7375. <code>forceDeleteWithoutRecovery</code></br>
  7376. <em>
  7377. bool
  7378. </em>
  7379. </td>
  7380. <td>
  7381. <em>(Optional)</em>
  7382. <p>Specifies whether to delete the secret without any recovery window. You
  7383. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  7384. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  7385. recovery window.
  7386. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  7387. </td>
  7388. </tr>
  7389. <tr>
  7390. <td>
  7391. <code>recoveryWindowInDays</code></br>
  7392. <em>
  7393. int64
  7394. </em>
  7395. </td>
  7396. <td>
  7397. <em>(Optional)</em>
  7398. <p>The number of days from 7 to 30 that Secrets Manager waits before
  7399. permanently deleting the secret. You can&rsquo;t use both this parameter and
  7400. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  7401. then by default Secrets Manager uses a 30 day recovery window.
  7402. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  7403. </td>
  7404. </tr>
  7405. </tbody>
  7406. </table>
  7407. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  7408. </h3>
  7409. <p>
  7410. (<em>Appears on:</em>
  7411. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7412. </p>
  7413. <p>
  7414. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  7415. </p>
  7416. <table>
  7417. <thead>
  7418. <tr>
  7419. <th>Field</th>
  7420. <th>Description</th>
  7421. </tr>
  7422. </thead>
  7423. <tbody>
  7424. <tr>
  7425. <td>
  7426. <code>clientId</code></br>
  7427. <em>
  7428. string
  7429. </em>
  7430. </td>
  7431. <td>
  7432. </td>
  7433. </tr>
  7434. <tr>
  7435. <td>
  7436. <code>clientSecretSecretRef</code></br>
  7437. <em>
  7438. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7439. External Secrets meta/v1.SecretKeySelector
  7440. </a>
  7441. </em>
  7442. </td>
  7443. <td>
  7444. </td>
  7445. </tr>
  7446. </tbody>
  7447. </table>
  7448. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  7449. (<code>string</code> alias)</p></h3>
  7450. <p>
  7451. (<em>Appears on:</em>
  7452. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  7453. </p>
  7454. <p>
  7455. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  7456. </p>
  7457. <table>
  7458. <thead>
  7459. <tr>
  7460. <th>Value</th>
  7461. <th>Description</th>
  7462. </tr>
  7463. </thead>
  7464. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  7465. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  7466. see: https://senhasegura.com/devops
  7467. </code></pre>
  7468. </td>
  7469. </tr></tbody>
  7470. </table>
  7471. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  7472. </h3>
  7473. <p>
  7474. (<em>Appears on:</em>
  7475. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  7476. </p>
  7477. <p>
  7478. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  7479. </p>
  7480. <table>
  7481. <thead>
  7482. <tr>
  7483. <th>Field</th>
  7484. <th>Description</th>
  7485. </tr>
  7486. </thead>
  7487. <tbody>
  7488. <tr>
  7489. <td>
  7490. <code>url</code></br>
  7491. <em>
  7492. string
  7493. </em>
  7494. </td>
  7495. <td>
  7496. <p>URL of senhasegura</p>
  7497. </td>
  7498. </tr>
  7499. <tr>
  7500. <td>
  7501. <code>module</code></br>
  7502. <em>
  7503. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  7504. SenhaseguraModuleType
  7505. </a>
  7506. </em>
  7507. </td>
  7508. <td>
  7509. <p>Module defines which senhasegura module should be used to get secrets</p>
  7510. </td>
  7511. </tr>
  7512. <tr>
  7513. <td>
  7514. <code>auth</code></br>
  7515. <em>
  7516. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  7517. SenhaseguraAuth
  7518. </a>
  7519. </em>
  7520. </td>
  7521. <td>
  7522. <p>Auth defines parameters to authenticate in senhasegura</p>
  7523. </td>
  7524. </tr>
  7525. <tr>
  7526. <td>
  7527. <code>ignoreSslCertificate</code></br>
  7528. <em>
  7529. bool
  7530. </em>
  7531. </td>
  7532. <td>
  7533. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  7534. </td>
  7535. </tr>
  7536. </tbody>
  7537. </table>
  7538. <h3 id="external-secrets.io/v1beta1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  7539. </h3>
  7540. <p>
  7541. (<em>Appears on:</em>
  7542. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  7543. </p>
  7544. <p>
  7545. <p>StoreGeneratorSourceRef allows you to override the source
  7546. from which the secret will be pulled from.
  7547. You can define at maximum one property.</p>
  7548. </p>
  7549. <table>
  7550. <thead>
  7551. <tr>
  7552. <th>Field</th>
  7553. <th>Description</th>
  7554. </tr>
  7555. </thead>
  7556. <tbody>
  7557. <tr>
  7558. <td>
  7559. <code>storeRef</code></br>
  7560. <em>
  7561. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7562. SecretStoreRef
  7563. </a>
  7564. </em>
  7565. </td>
  7566. <td>
  7567. <em>(Optional)</em>
  7568. </td>
  7569. </tr>
  7570. <tr>
  7571. <td>
  7572. <code>generatorRef</code></br>
  7573. <em>
  7574. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7575. GeneratorRef
  7576. </a>
  7577. </em>
  7578. </td>
  7579. <td>
  7580. <em>(Optional)</em>
  7581. <p>GeneratorRef points to a generator custom resource.</p>
  7582. </td>
  7583. </tr>
  7584. </tbody>
  7585. </table>
  7586. <h3 id="external-secrets.io/v1beta1.StoreSourceRef">StoreSourceRef
  7587. </h3>
  7588. <p>
  7589. (<em>Appears on:</em>
  7590. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>)
  7591. </p>
  7592. <p>
  7593. <p>StoreSourceRef allows you to override the SecretStore source
  7594. from which the secret will be pulled from.
  7595. You can define at maximum one property.</p>
  7596. </p>
  7597. <table>
  7598. <thead>
  7599. <tr>
  7600. <th>Field</th>
  7601. <th>Description</th>
  7602. </tr>
  7603. </thead>
  7604. <tbody>
  7605. <tr>
  7606. <td>
  7607. <code>storeRef</code></br>
  7608. <em>
  7609. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  7610. SecretStoreRef
  7611. </a>
  7612. </em>
  7613. </td>
  7614. <td>
  7615. <em>(Optional)</em>
  7616. </td>
  7617. </tr>
  7618. <tr>
  7619. <td>
  7620. <code>generatorRef</code></br>
  7621. <em>
  7622. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  7623. GeneratorRef
  7624. </a>
  7625. </em>
  7626. </td>
  7627. <td>
  7628. <p>GeneratorRef points to a generator custom resource.</p>
  7629. <p>Deprecated: The generatorRef is not implemented in .data[].
  7630. this will be removed with v1.</p>
  7631. </td>
  7632. </tr>
  7633. </tbody>
  7634. </table>
  7635. <h3 id="external-secrets.io/v1beta1.Tag">Tag
  7636. </h3>
  7637. <p>
  7638. </p>
  7639. <table>
  7640. <thead>
  7641. <tr>
  7642. <th>Field</th>
  7643. <th>Description</th>
  7644. </tr>
  7645. </thead>
  7646. <tbody>
  7647. <tr>
  7648. <td>
  7649. <code>key</code></br>
  7650. <em>
  7651. string
  7652. </em>
  7653. </td>
  7654. <td>
  7655. </td>
  7656. </tr>
  7657. <tr>
  7658. <td>
  7659. <code>value</code></br>
  7660. <em>
  7661. string
  7662. </em>
  7663. </td>
  7664. <td>
  7665. </td>
  7666. </tr>
  7667. </tbody>
  7668. </table>
  7669. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  7670. (<code>string</code> alias)</p></h3>
  7671. <p>
  7672. (<em>Appears on:</em>
  7673. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7674. </p>
  7675. <p>
  7676. </p>
  7677. <table>
  7678. <thead>
  7679. <tr>
  7680. <th>Value</th>
  7681. <th>Description</th>
  7682. </tr>
  7683. </thead>
  7684. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  7685. <td></td>
  7686. </tr><tr><td><p>&#34;v2&#34;</p></td>
  7687. <td></td>
  7688. </tr></tbody>
  7689. </table>
  7690. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  7691. </h3>
  7692. <p>
  7693. (<em>Appears on:</em>
  7694. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7695. </p>
  7696. <p>
  7697. </p>
  7698. <table>
  7699. <thead>
  7700. <tr>
  7701. <th>Field</th>
  7702. <th>Description</th>
  7703. </tr>
  7704. </thead>
  7705. <tbody>
  7706. <tr>
  7707. <td>
  7708. <code>configMap</code></br>
  7709. <em>
  7710. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7711. TemplateRef
  7712. </a>
  7713. </em>
  7714. </td>
  7715. <td>
  7716. </td>
  7717. </tr>
  7718. <tr>
  7719. <td>
  7720. <code>secret</code></br>
  7721. <em>
  7722. <a href="#external-secrets.io/v1beta1.TemplateRef">
  7723. TemplateRef
  7724. </a>
  7725. </em>
  7726. </td>
  7727. <td>
  7728. </td>
  7729. </tr>
  7730. <tr>
  7731. <td>
  7732. <code>target</code></br>
  7733. <em>
  7734. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  7735. TemplateTarget
  7736. </a>
  7737. </em>
  7738. </td>
  7739. <td>
  7740. <em>(Optional)</em>
  7741. </td>
  7742. </tr>
  7743. <tr>
  7744. <td>
  7745. <code>literal</code></br>
  7746. <em>
  7747. string
  7748. </em>
  7749. </td>
  7750. <td>
  7751. <em>(Optional)</em>
  7752. </td>
  7753. </tr>
  7754. </tbody>
  7755. </table>
  7756. <h3 id="external-secrets.io/v1beta1.TemplateMergePolicy">TemplateMergePolicy
  7757. (<code>string</code> alias)</p></h3>
  7758. <p>
  7759. (<em>Appears on:</em>
  7760. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  7761. </p>
  7762. <p>
  7763. </p>
  7764. <table>
  7765. <thead>
  7766. <tr>
  7767. <th>Value</th>
  7768. <th>Description</th>
  7769. </tr>
  7770. </thead>
  7771. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  7772. <td></td>
  7773. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  7774. <td></td>
  7775. </tr></tbody>
  7776. </table>
  7777. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  7778. </h3>
  7779. <p>
  7780. (<em>Appears on:</em>
  7781. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7782. </p>
  7783. <p>
  7784. </p>
  7785. <table>
  7786. <thead>
  7787. <tr>
  7788. <th>Field</th>
  7789. <th>Description</th>
  7790. </tr>
  7791. </thead>
  7792. <tbody>
  7793. <tr>
  7794. <td>
  7795. <code>name</code></br>
  7796. <em>
  7797. string
  7798. </em>
  7799. </td>
  7800. <td>
  7801. </td>
  7802. </tr>
  7803. <tr>
  7804. <td>
  7805. <code>items</code></br>
  7806. <em>
  7807. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  7808. []TemplateRefItem
  7809. </a>
  7810. </em>
  7811. </td>
  7812. <td>
  7813. </td>
  7814. </tr>
  7815. </tbody>
  7816. </table>
  7817. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  7818. </h3>
  7819. <p>
  7820. (<em>Appears on:</em>
  7821. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  7822. </p>
  7823. <p>
  7824. </p>
  7825. <table>
  7826. <thead>
  7827. <tr>
  7828. <th>Field</th>
  7829. <th>Description</th>
  7830. </tr>
  7831. </thead>
  7832. <tbody>
  7833. <tr>
  7834. <td>
  7835. <code>key</code></br>
  7836. <em>
  7837. string
  7838. </em>
  7839. </td>
  7840. <td>
  7841. </td>
  7842. </tr>
  7843. <tr>
  7844. <td>
  7845. <code>templateAs</code></br>
  7846. <em>
  7847. <a href="#external-secrets.io/v1beta1.TemplateScope">
  7848. TemplateScope
  7849. </a>
  7850. </em>
  7851. </td>
  7852. <td>
  7853. </td>
  7854. </tr>
  7855. </tbody>
  7856. </table>
  7857. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  7858. (<code>string</code> alias)</p></h3>
  7859. <p>
  7860. (<em>Appears on:</em>
  7861. <a href="#external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem</a>)
  7862. </p>
  7863. <p>
  7864. </p>
  7865. <table>
  7866. <thead>
  7867. <tr>
  7868. <th>Value</th>
  7869. <th>Description</th>
  7870. </tr>
  7871. </thead>
  7872. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  7873. <td></td>
  7874. </tr><tr><td><p>&#34;Values&#34;</p></td>
  7875. <td></td>
  7876. </tr></tbody>
  7877. </table>
  7878. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  7879. (<code>string</code> alias)</p></h3>
  7880. <p>
  7881. (<em>Appears on:</em>
  7882. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  7883. </p>
  7884. <p>
  7885. </p>
  7886. <table>
  7887. <thead>
  7888. <tr>
  7889. <th>Value</th>
  7890. <th>Description</th>
  7891. </tr>
  7892. </thead>
  7893. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  7894. <td></td>
  7895. </tr><tr><td><p>&#34;Data&#34;</p></td>
  7896. <td></td>
  7897. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  7898. <td></td>
  7899. </tr></tbody>
  7900. </table>
  7901. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  7902. </h3>
  7903. <p>
  7904. (<em>Appears on:</em>
  7905. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  7906. </p>
  7907. <p>
  7908. </p>
  7909. <table>
  7910. <thead>
  7911. <tr>
  7912. <th>Field</th>
  7913. <th>Description</th>
  7914. </tr>
  7915. </thead>
  7916. <tbody>
  7917. <tr>
  7918. <td>
  7919. <code>bearerToken</code></br>
  7920. <em>
  7921. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7922. External Secrets meta/v1.SecretKeySelector
  7923. </a>
  7924. </em>
  7925. </td>
  7926. <td>
  7927. </td>
  7928. </tr>
  7929. </tbody>
  7930. </table>
  7931. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  7932. (<code>byte</code> alias)</p></h3>
  7933. <p>
  7934. </p>
  7935. <table>
  7936. <thead>
  7937. <tr>
  7938. <th>Value</th>
  7939. <th>Description</th>
  7940. </tr>
  7941. </thead>
  7942. <tbody><tr><td><p>2</p></td>
  7943. <td><p>Error indicates that there is a misconfiguration.</p>
  7944. </td>
  7945. </tr><tr><td><p>0</p></td>
  7946. <td><p>Ready indicates that the client is configured correctly
  7947. and can be used.</p>
  7948. </td>
  7949. </tr><tr><td><p>1</p></td>
  7950. <td><p>Unknown indicates that the client can be used
  7951. but information is missing and it can not be validated.</p>
  7952. </td>
  7953. </tr></tbody>
  7954. </table>
  7955. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  7956. </h3>
  7957. <p>
  7958. (<em>Appears on:</em>
  7959. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  7960. </p>
  7961. <p>
  7962. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  7963. with the role and secret stored in a Kubernetes Secret resource.</p>
  7964. </p>
  7965. <table>
  7966. <thead>
  7967. <tr>
  7968. <th>Field</th>
  7969. <th>Description</th>
  7970. </tr>
  7971. </thead>
  7972. <tbody>
  7973. <tr>
  7974. <td>
  7975. <code>path</code></br>
  7976. <em>
  7977. string
  7978. </em>
  7979. </td>
  7980. <td>
  7981. <p>Path where the App Role authentication backend is mounted
  7982. in Vault, e.g: &ldquo;approle&rdquo;</p>
  7983. </td>
  7984. </tr>
  7985. <tr>
  7986. <td>
  7987. <code>roleId</code></br>
  7988. <em>
  7989. string
  7990. </em>
  7991. </td>
  7992. <td>
  7993. <em>(Optional)</em>
  7994. <p>RoleID configured in the App Role authentication backend when setting
  7995. up the authentication backend in Vault.</p>
  7996. </td>
  7997. </tr>
  7998. <tr>
  7999. <td>
  8000. <code>roleRef</code></br>
  8001. <em>
  8002. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8003. External Secrets meta/v1.SecretKeySelector
  8004. </a>
  8005. </em>
  8006. </td>
  8007. <td>
  8008. <em>(Optional)</em>
  8009. <p>Reference to a key in a Secret that contains the App Role ID used
  8010. to authenticate with Vault.
  8011. The <code>key</code> field must be specified and denotes which entry within the Secret
  8012. resource is used as the app role id.</p>
  8013. </td>
  8014. </tr>
  8015. <tr>
  8016. <td>
  8017. <code>secretRef</code></br>
  8018. <em>
  8019. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8020. External Secrets meta/v1.SecretKeySelector
  8021. </a>
  8022. </em>
  8023. </td>
  8024. <td>
  8025. <p>Reference to a key in a Secret that contains the App Role secret used
  8026. to authenticate with Vault.
  8027. The <code>key</code> field must be specified and denotes which entry within the Secret
  8028. resource is used as the app role secret.</p>
  8029. </td>
  8030. </tr>
  8031. </tbody>
  8032. </table>
  8033. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  8034. </h3>
  8035. <p>
  8036. (<em>Appears on:</em>
  8037. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8038. </p>
  8039. <p>
  8040. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  8041. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  8042. can be specified. A namespace to authenticate against can optionally be specified.</p>
  8043. </p>
  8044. <table>
  8045. <thead>
  8046. <tr>
  8047. <th>Field</th>
  8048. <th>Description</th>
  8049. </tr>
  8050. </thead>
  8051. <tbody>
  8052. <tr>
  8053. <td>
  8054. <code>namespace</code></br>
  8055. <em>
  8056. string
  8057. </em>
  8058. </td>
  8059. <td>
  8060. <em>(Optional)</em>
  8061. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  8062. Namespaces is a set of features within Vault Enterprise that allows
  8063. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8064. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  8065. This will default to Vault.Namespace field if set, or empty otherwise</p>
  8066. </td>
  8067. </tr>
  8068. <tr>
  8069. <td>
  8070. <code>tokenSecretRef</code></br>
  8071. <em>
  8072. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8073. External Secrets meta/v1.SecretKeySelector
  8074. </a>
  8075. </em>
  8076. </td>
  8077. <td>
  8078. <em>(Optional)</em>
  8079. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  8080. </td>
  8081. </tr>
  8082. <tr>
  8083. <td>
  8084. <code>appRole</code></br>
  8085. <em>
  8086. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  8087. VaultAppRole
  8088. </a>
  8089. </em>
  8090. </td>
  8091. <td>
  8092. <em>(Optional)</em>
  8093. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  8094. with the role and secret stored in a Kubernetes Secret resource.</p>
  8095. </td>
  8096. </tr>
  8097. <tr>
  8098. <td>
  8099. <code>kubernetes</code></br>
  8100. <em>
  8101. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  8102. VaultKubernetesAuth
  8103. </a>
  8104. </em>
  8105. </td>
  8106. <td>
  8107. <em>(Optional)</em>
  8108. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  8109. token stored in the named Secret resource to the Vault server.</p>
  8110. </td>
  8111. </tr>
  8112. <tr>
  8113. <td>
  8114. <code>ldap</code></br>
  8115. <em>
  8116. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  8117. VaultLdapAuth
  8118. </a>
  8119. </em>
  8120. </td>
  8121. <td>
  8122. <em>(Optional)</em>
  8123. <p>Ldap authenticates with Vault by passing username/password pair using
  8124. the LDAP authentication method</p>
  8125. </td>
  8126. </tr>
  8127. <tr>
  8128. <td>
  8129. <code>jwt</code></br>
  8130. <em>
  8131. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  8132. VaultJwtAuth
  8133. </a>
  8134. </em>
  8135. </td>
  8136. <td>
  8137. <em>(Optional)</em>
  8138. <p>Jwt authenticates with Vault by passing role and JWT token using the
  8139. JWT/OIDC authentication method</p>
  8140. </td>
  8141. </tr>
  8142. <tr>
  8143. <td>
  8144. <code>cert</code></br>
  8145. <em>
  8146. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  8147. VaultCertAuth
  8148. </a>
  8149. </em>
  8150. </td>
  8151. <td>
  8152. <em>(Optional)</em>
  8153. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  8154. Cert authentication method</p>
  8155. </td>
  8156. </tr>
  8157. <tr>
  8158. <td>
  8159. <code>iam</code></br>
  8160. <em>
  8161. <a href="#external-secrets.io/v1beta1.VaultIamAuth">
  8162. VaultIamAuth
  8163. </a>
  8164. </em>
  8165. </td>
  8166. <td>
  8167. <em>(Optional)</em>
  8168. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  8169. AWS IAM authentication method</p>
  8170. </td>
  8171. </tr>
  8172. <tr>
  8173. <td>
  8174. <code>userPass</code></br>
  8175. <em>
  8176. <a href="#external-secrets.io/v1beta1.VaultUserPassAuth">
  8177. VaultUserPassAuth
  8178. </a>
  8179. </em>
  8180. </td>
  8181. <td>
  8182. <em>(Optional)</em>
  8183. <p>UserPass authenticates with Vault by passing username/password pair</p>
  8184. </td>
  8185. </tr>
  8186. </tbody>
  8187. </table>
  8188. <h3 id="external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth
  8189. </h3>
  8190. <p>
  8191. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  8192. Only one of secretRef or jwt can be specified.
  8193. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  8194. </p>
  8195. <table>
  8196. <thead>
  8197. <tr>
  8198. <th>Field</th>
  8199. <th>Description</th>
  8200. </tr>
  8201. </thead>
  8202. <tbody>
  8203. <tr>
  8204. <td>
  8205. <code>secretRef</code></br>
  8206. <em>
  8207. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8208. VaultAwsAuthSecretRef
  8209. </a>
  8210. </em>
  8211. </td>
  8212. <td>
  8213. <em>(Optional)</em>
  8214. </td>
  8215. </tr>
  8216. <tr>
  8217. <td>
  8218. <code>jwt</code></br>
  8219. <em>
  8220. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8221. VaultAwsJWTAuth
  8222. </a>
  8223. </em>
  8224. </td>
  8225. <td>
  8226. <em>(Optional)</em>
  8227. </td>
  8228. </tr>
  8229. </tbody>
  8230. </table>
  8231. <h3 id="external-secrets.io/v1beta1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  8232. </h3>
  8233. <p>
  8234. (<em>Appears on:</em>
  8235. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8236. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8237. </p>
  8238. <p>
  8239. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  8240. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  8241. </p>
  8242. <table>
  8243. <thead>
  8244. <tr>
  8245. <th>Field</th>
  8246. <th>Description</th>
  8247. </tr>
  8248. </thead>
  8249. <tbody>
  8250. <tr>
  8251. <td>
  8252. <code>accessKeyIDSecretRef</code></br>
  8253. <em>
  8254. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8255. External Secrets meta/v1.SecretKeySelector
  8256. </a>
  8257. </em>
  8258. </td>
  8259. <td>
  8260. <p>The AccessKeyID is used for authentication</p>
  8261. </td>
  8262. </tr>
  8263. <tr>
  8264. <td>
  8265. <code>secretAccessKeySecretRef</code></br>
  8266. <em>
  8267. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8268. External Secrets meta/v1.SecretKeySelector
  8269. </a>
  8270. </em>
  8271. </td>
  8272. <td>
  8273. <p>The SecretAccessKey is used for authentication</p>
  8274. </td>
  8275. </tr>
  8276. <tr>
  8277. <td>
  8278. <code>sessionTokenSecretRef</code></br>
  8279. <em>
  8280. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8281. External Secrets meta/v1.SecretKeySelector
  8282. </a>
  8283. </em>
  8284. </td>
  8285. <td>
  8286. <p>The SessionToken used for authentication
  8287. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  8288. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  8289. </td>
  8290. </tr>
  8291. </tbody>
  8292. </table>
  8293. <h3 id="external-secrets.io/v1beta1.VaultAwsJWTAuth">VaultAwsJWTAuth
  8294. </h3>
  8295. <p>
  8296. (<em>Appears on:</em>
  8297. <a href="#external-secrets.io/v1beta1.VaultAwsAuth">VaultAwsAuth</a>,
  8298. <a href="#external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth</a>)
  8299. </p>
  8300. <p>
  8301. <p>Authenticate against AWS using service account tokens.</p>
  8302. </p>
  8303. <table>
  8304. <thead>
  8305. <tr>
  8306. <th>Field</th>
  8307. <th>Description</th>
  8308. </tr>
  8309. </thead>
  8310. <tbody>
  8311. <tr>
  8312. <td>
  8313. <code>serviceAccountRef</code></br>
  8314. <em>
  8315. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8316. External Secrets meta/v1.ServiceAccountSelector
  8317. </a>
  8318. </em>
  8319. </td>
  8320. <td>
  8321. </td>
  8322. </tr>
  8323. </tbody>
  8324. </table>
  8325. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  8326. </h3>
  8327. <p>
  8328. (<em>Appears on:</em>
  8329. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8330. </p>
  8331. <p>
  8332. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8333. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  8334. </p>
  8335. <table>
  8336. <thead>
  8337. <tr>
  8338. <th>Field</th>
  8339. <th>Description</th>
  8340. </tr>
  8341. </thead>
  8342. <tbody>
  8343. <tr>
  8344. <td>
  8345. <code>clientCert</code></br>
  8346. <em>
  8347. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8348. External Secrets meta/v1.SecretKeySelector
  8349. </a>
  8350. </em>
  8351. </td>
  8352. <td>
  8353. <em>(Optional)</em>
  8354. <p>ClientCert is a certificate to authenticate using the Cert Vault
  8355. authentication method</p>
  8356. </td>
  8357. </tr>
  8358. <tr>
  8359. <td>
  8360. <code>secretRef</code></br>
  8361. <em>
  8362. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8363. External Secrets meta/v1.SecretKeySelector
  8364. </a>
  8365. </em>
  8366. </td>
  8367. <td>
  8368. <p>SecretRef to a key in a Secret resource containing client private key to
  8369. authenticate with Vault using the Cert authentication method</p>
  8370. </td>
  8371. </tr>
  8372. </tbody>
  8373. </table>
  8374. <h3 id="external-secrets.io/v1beta1.VaultClientTLS">VaultClientTLS
  8375. </h3>
  8376. <p>
  8377. (<em>Appears on:</em>
  8378. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8379. </p>
  8380. <p>
  8381. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  8382. when the Vault server requires mutual authentication.</p>
  8383. </p>
  8384. <table>
  8385. <thead>
  8386. <tr>
  8387. <th>Field</th>
  8388. <th>Description</th>
  8389. </tr>
  8390. </thead>
  8391. <tbody>
  8392. <tr>
  8393. <td>
  8394. <code>certSecretRef</code></br>
  8395. <em>
  8396. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8397. External Secrets meta/v1.SecretKeySelector
  8398. </a>
  8399. </em>
  8400. </td>
  8401. <td>
  8402. <p>CertSecretRef is a certificate added to the transport layer
  8403. when communicating with the Vault server.
  8404. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  8405. </td>
  8406. </tr>
  8407. <tr>
  8408. <td>
  8409. <code>keySecretRef</code></br>
  8410. <em>
  8411. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8412. External Secrets meta/v1.SecretKeySelector
  8413. </a>
  8414. </em>
  8415. </td>
  8416. <td>
  8417. <p>KeySecretRef to a key in a Secret resource containing client private key
  8418. added to the transport layer when communicating with the Vault server.
  8419. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  8420. </td>
  8421. </tr>
  8422. </tbody>
  8423. </table>
  8424. <h3 id="external-secrets.io/v1beta1.VaultIamAuth">VaultIamAuth
  8425. </h3>
  8426. <p>
  8427. (<em>Appears on:</em>
  8428. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8429. </p>
  8430. <p>
  8431. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8432. </p>
  8433. <table>
  8434. <thead>
  8435. <tr>
  8436. <th>Field</th>
  8437. <th>Description</th>
  8438. </tr>
  8439. </thead>
  8440. <tbody>
  8441. <tr>
  8442. <td>
  8443. <code>path</code></br>
  8444. <em>
  8445. string
  8446. </em>
  8447. </td>
  8448. <td>
  8449. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  8450. </td>
  8451. </tr>
  8452. <tr>
  8453. <td>
  8454. <code>region</code></br>
  8455. <em>
  8456. string
  8457. </em>
  8458. </td>
  8459. <td>
  8460. <p>AWS region</p>
  8461. </td>
  8462. </tr>
  8463. <tr>
  8464. <td>
  8465. <code>role</code></br>
  8466. <em>
  8467. string
  8468. </em>
  8469. </td>
  8470. <td>
  8471. <p>This is the AWS role to be assumed before talking to vault</p>
  8472. </td>
  8473. </tr>
  8474. <tr>
  8475. <td>
  8476. <code>vaultRole</code></br>
  8477. <em>
  8478. string
  8479. </em>
  8480. </td>
  8481. <td>
  8482. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  8483. </td>
  8484. </tr>
  8485. <tr>
  8486. <td>
  8487. <code>externalID</code></br>
  8488. <em>
  8489. string
  8490. </em>
  8491. </td>
  8492. <td>
  8493. <p>AWS External ID set on assumed IAM roles</p>
  8494. </td>
  8495. </tr>
  8496. <tr>
  8497. <td>
  8498. <code>vaultAwsIamServerID</code></br>
  8499. <em>
  8500. string
  8501. </em>
  8502. </td>
  8503. <td>
  8504. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  8505. </td>
  8506. </tr>
  8507. <tr>
  8508. <td>
  8509. <code>secretRef</code></br>
  8510. <em>
  8511. <a href="#external-secrets.io/v1beta1.VaultAwsAuthSecretRef">
  8512. VaultAwsAuthSecretRef
  8513. </a>
  8514. </em>
  8515. </td>
  8516. <td>
  8517. <em>(Optional)</em>
  8518. <p>Specify credentials in a Secret object</p>
  8519. </td>
  8520. </tr>
  8521. <tr>
  8522. <td>
  8523. <code>jwt</code></br>
  8524. <em>
  8525. <a href="#external-secrets.io/v1beta1.VaultAwsJWTAuth">
  8526. VaultAwsJWTAuth
  8527. </a>
  8528. </em>
  8529. </td>
  8530. <td>
  8531. <em>(Optional)</em>
  8532. <p>Specify a service account with IRSA enabled</p>
  8533. </td>
  8534. </tr>
  8535. </tbody>
  8536. </table>
  8537. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  8538. </h3>
  8539. <p>
  8540. (<em>Appears on:</em>
  8541. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8542. </p>
  8543. <p>
  8544. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  8545. method, with the role name and a token stored in a Kubernetes Secret resource or
  8546. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  8547. </p>
  8548. <table>
  8549. <thead>
  8550. <tr>
  8551. <th>Field</th>
  8552. <th>Description</th>
  8553. </tr>
  8554. </thead>
  8555. <tbody>
  8556. <tr>
  8557. <td>
  8558. <code>path</code></br>
  8559. <em>
  8560. string
  8561. </em>
  8562. </td>
  8563. <td>
  8564. <p>Path where the JWT authentication backend is mounted
  8565. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  8566. </td>
  8567. </tr>
  8568. <tr>
  8569. <td>
  8570. <code>role</code></br>
  8571. <em>
  8572. string
  8573. </em>
  8574. </td>
  8575. <td>
  8576. <em>(Optional)</em>
  8577. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  8578. authentication method</p>
  8579. </td>
  8580. </tr>
  8581. <tr>
  8582. <td>
  8583. <code>secretRef</code></br>
  8584. <em>
  8585. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8586. External Secrets meta/v1.SecretKeySelector
  8587. </a>
  8588. </em>
  8589. </td>
  8590. <td>
  8591. <em>(Optional)</em>
  8592. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  8593. authenticate with Vault using the JWT/OIDC authentication method.</p>
  8594. </td>
  8595. </tr>
  8596. <tr>
  8597. <td>
  8598. <code>kubernetesServiceAccountToken</code></br>
  8599. <em>
  8600. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  8601. VaultKubernetesServiceAccountTokenAuth
  8602. </a>
  8603. </em>
  8604. </td>
  8605. <td>
  8606. <em>(Optional)</em>
  8607. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  8608. a token for with the <code>TokenRequest</code> API.</p>
  8609. </td>
  8610. </tr>
  8611. </tbody>
  8612. </table>
  8613. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  8614. (<code>string</code> alias)</p></h3>
  8615. <p>
  8616. (<em>Appears on:</em>
  8617. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  8618. </p>
  8619. <p>
  8620. </p>
  8621. <table>
  8622. <thead>
  8623. <tr>
  8624. <th>Value</th>
  8625. <th>Description</th>
  8626. </tr>
  8627. </thead>
  8628. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  8629. <td></td>
  8630. </tr><tr><td><p>&#34;v2&#34;</p></td>
  8631. <td></td>
  8632. </tr></tbody>
  8633. </table>
  8634. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  8635. </h3>
  8636. <p>
  8637. (<em>Appears on:</em>
  8638. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8639. </p>
  8640. <p>
  8641. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  8642. a Secret.</p>
  8643. </p>
  8644. <table>
  8645. <thead>
  8646. <tr>
  8647. <th>Field</th>
  8648. <th>Description</th>
  8649. </tr>
  8650. </thead>
  8651. <tbody>
  8652. <tr>
  8653. <td>
  8654. <code>mountPath</code></br>
  8655. <em>
  8656. string
  8657. </em>
  8658. </td>
  8659. <td>
  8660. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  8661. &ldquo;kubernetes&rdquo;</p>
  8662. </td>
  8663. </tr>
  8664. <tr>
  8665. <td>
  8666. <code>serviceAccountRef</code></br>
  8667. <em>
  8668. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8669. External Secrets meta/v1.ServiceAccountSelector
  8670. </a>
  8671. </em>
  8672. </td>
  8673. <td>
  8674. <em>(Optional)</em>
  8675. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  8676. If the service account is specified, the service account secret token JWT will be used
  8677. for authenticating with Vault. If the service account selector is not supplied,
  8678. the secretRef will be used instead.</p>
  8679. </td>
  8680. </tr>
  8681. <tr>
  8682. <td>
  8683. <code>secretRef</code></br>
  8684. <em>
  8685. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8686. External Secrets meta/v1.SecretKeySelector
  8687. </a>
  8688. </em>
  8689. </td>
  8690. <td>
  8691. <em>(Optional)</em>
  8692. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  8693. for authenticating with Vault. If a name is specified without a key,
  8694. <code>token</code> is the default. If one is not specified, the one bound to
  8695. the controller will be used.</p>
  8696. </td>
  8697. </tr>
  8698. <tr>
  8699. <td>
  8700. <code>role</code></br>
  8701. <em>
  8702. string
  8703. </em>
  8704. </td>
  8705. <td>
  8706. <p>A required field containing the Vault Role to assume. A Role binds a
  8707. Kubernetes ServiceAccount with a set of Vault policies.</p>
  8708. </td>
  8709. </tr>
  8710. </tbody>
  8711. </table>
  8712. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  8713. </h3>
  8714. <p>
  8715. (<em>Appears on:</em>
  8716. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  8717. </p>
  8718. <p>
  8719. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  8720. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  8721. </p>
  8722. <table>
  8723. <thead>
  8724. <tr>
  8725. <th>Field</th>
  8726. <th>Description</th>
  8727. </tr>
  8728. </thead>
  8729. <tbody>
  8730. <tr>
  8731. <td>
  8732. <code>serviceAccountRef</code></br>
  8733. <em>
  8734. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  8735. External Secrets meta/v1.ServiceAccountSelector
  8736. </a>
  8737. </em>
  8738. </td>
  8739. <td>
  8740. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  8741. </td>
  8742. </tr>
  8743. <tr>
  8744. <td>
  8745. <code>audiences</code></br>
  8746. <em>
  8747. []string
  8748. </em>
  8749. </td>
  8750. <td>
  8751. <em>(Optional)</em>
  8752. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  8753. account token for the service account referenced by <code>serviceAccountRef</code>.
  8754. Defaults to a single audience <code>vault</code> it not specified.
  8755. Deprecated: use serviceAccountRef.Audiences instead</p>
  8756. </td>
  8757. </tr>
  8758. <tr>
  8759. <td>
  8760. <code>expirationSeconds</code></br>
  8761. <em>
  8762. int64
  8763. </em>
  8764. </td>
  8765. <td>
  8766. <em>(Optional)</em>
  8767. <p>Optional expiration time in seconds that will be used to request a temporary
  8768. Kubernetes service account token for the service account referenced by
  8769. <code>serviceAccountRef</code>.
  8770. Deprecated: this will be removed in the future.
  8771. Defaults to 10 minutes.</p>
  8772. </td>
  8773. </tr>
  8774. </tbody>
  8775. </table>
  8776. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  8777. </h3>
  8778. <p>
  8779. (<em>Appears on:</em>
  8780. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  8781. </p>
  8782. <p>
  8783. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  8784. with the username and password stored in a Kubernetes Secret resource.</p>
  8785. </p>
  8786. <table>
  8787. <thead>
  8788. <tr>
  8789. <th>Field</th>
  8790. <th>Description</th>
  8791. </tr>
  8792. </thead>
  8793. <tbody>
  8794. <tr>
  8795. <td>
  8796. <code>path</code></br>
  8797. <em>
  8798. string
  8799. </em>
  8800. </td>
  8801. <td>
  8802. <p>Path where the LDAP authentication backend is mounted
  8803. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  8804. </td>
  8805. </tr>
  8806. <tr>
  8807. <td>
  8808. <code>username</code></br>
  8809. <em>
  8810. string
  8811. </em>
  8812. </td>
  8813. <td>
  8814. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  8815. authentication method</p>
  8816. </td>
  8817. </tr>
  8818. <tr>
  8819. <td>
  8820. <code>secretRef</code></br>
  8821. <em>
  8822. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8823. External Secrets meta/v1.SecretKeySelector
  8824. </a>
  8825. </em>
  8826. </td>
  8827. <td>
  8828. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  8829. user used to authenticate with Vault using the LDAP authentication
  8830. method</p>
  8831. </td>
  8832. </tr>
  8833. </tbody>
  8834. </table>
  8835. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  8836. </h3>
  8837. <p>
  8838. (<em>Appears on:</em>
  8839. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  8840. </p>
  8841. <p>
  8842. <p>Configures an store to sync secrets using a HashiCorp Vault
  8843. KV backend.</p>
  8844. </p>
  8845. <table>
  8846. <thead>
  8847. <tr>
  8848. <th>Field</th>
  8849. <th>Description</th>
  8850. </tr>
  8851. </thead>
  8852. <tbody>
  8853. <tr>
  8854. <td>
  8855. <code>auth</code></br>
  8856. <em>
  8857. <a href="#external-secrets.io/v1beta1.VaultAuth">
  8858. VaultAuth
  8859. </a>
  8860. </em>
  8861. </td>
  8862. <td>
  8863. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  8864. </td>
  8865. </tr>
  8866. <tr>
  8867. <td>
  8868. <code>server</code></br>
  8869. <em>
  8870. string
  8871. </em>
  8872. </td>
  8873. <td>
  8874. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  8875. </td>
  8876. </tr>
  8877. <tr>
  8878. <td>
  8879. <code>path</code></br>
  8880. <em>
  8881. string
  8882. </em>
  8883. </td>
  8884. <td>
  8885. <em>(Optional)</em>
  8886. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  8887. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  8888. for fetching secrets from Vault is optional and will be appended
  8889. if not present in specified path.</p>
  8890. </td>
  8891. </tr>
  8892. <tr>
  8893. <td>
  8894. <code>version</code></br>
  8895. <em>
  8896. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  8897. VaultKVStoreVersion
  8898. </a>
  8899. </em>
  8900. </td>
  8901. <td>
  8902. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  8903. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  8904. </td>
  8905. </tr>
  8906. <tr>
  8907. <td>
  8908. <code>namespace</code></br>
  8909. <em>
  8910. string
  8911. </em>
  8912. </td>
  8913. <td>
  8914. <em>(Optional)</em>
  8915. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  8916. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  8917. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  8918. </td>
  8919. </tr>
  8920. <tr>
  8921. <td>
  8922. <code>caBundle</code></br>
  8923. <em>
  8924. []byte
  8925. </em>
  8926. </td>
  8927. <td>
  8928. <em>(Optional)</em>
  8929. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  8930. if the Server URL is using HTTPS protocol. This parameter is ignored for
  8931. plain HTTP protocol connection. If not set the system root certificates
  8932. are used to validate the TLS connection.</p>
  8933. </td>
  8934. </tr>
  8935. <tr>
  8936. <td>
  8937. <code>tls</code></br>
  8938. <em>
  8939. <a href="#external-secrets.io/v1beta1.VaultClientTLS">
  8940. VaultClientTLS
  8941. </a>
  8942. </em>
  8943. </td>
  8944. <td>
  8945. <em>(Optional)</em>
  8946. <p>The configuration used for client side related TLS communication, when the Vault server
  8947. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  8948. This parameter is ignored for plain HTTP protocol connection.
  8949. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  8950. which is available under the <code>auth.cert</code> section.</p>
  8951. </td>
  8952. </tr>
  8953. <tr>
  8954. <td>
  8955. <code>caProvider</code></br>
  8956. <em>
  8957. <a href="#external-secrets.io/v1beta1.CAProvider">
  8958. CAProvider
  8959. </a>
  8960. </em>
  8961. </td>
  8962. <td>
  8963. <em>(Optional)</em>
  8964. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  8965. </td>
  8966. </tr>
  8967. <tr>
  8968. <td>
  8969. <code>readYourWrites</code></br>
  8970. <em>
  8971. bool
  8972. </em>
  8973. </td>
  8974. <td>
  8975. <em>(Optional)</em>
  8976. <p>ReadYourWrites ensures isolated read-after-write semantics by
  8977. providing discovered cluster replication states in each request.
  8978. More information about eventual consistency in Vault can be found here
  8979. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  8980. </td>
  8981. </tr>
  8982. <tr>
  8983. <td>
  8984. <code>forwardInconsistent</code></br>
  8985. <em>
  8986. bool
  8987. </em>
  8988. </td>
  8989. <td>
  8990. <em>(Optional)</em>
  8991. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  8992. leader instead of simply retrying within a loop. This can increase performance if
  8993. the option is enabled serverside.
  8994. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  8995. </td>
  8996. </tr>
  8997. </tbody>
  8998. </table>
  8999. <h3 id="external-secrets.io/v1beta1.VaultUserPassAuth">VaultUserPassAuth
  9000. </h3>
  9001. <p>
  9002. (<em>Appears on:</em>
  9003. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  9004. </p>
  9005. <p>
  9006. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  9007. with the username and password stored in a Kubernetes Secret resource.</p>
  9008. </p>
  9009. <table>
  9010. <thead>
  9011. <tr>
  9012. <th>Field</th>
  9013. <th>Description</th>
  9014. </tr>
  9015. </thead>
  9016. <tbody>
  9017. <tr>
  9018. <td>
  9019. <code>path</code></br>
  9020. <em>
  9021. string
  9022. </em>
  9023. </td>
  9024. <td>
  9025. <p>Path where the UserPassword authentication backend is mounted
  9026. in Vault, e.g: &ldquo;user&rdquo;</p>
  9027. </td>
  9028. </tr>
  9029. <tr>
  9030. <td>
  9031. <code>username</code></br>
  9032. <em>
  9033. string
  9034. </em>
  9035. </td>
  9036. <td>
  9037. <p>Username is a user name used to authenticate using the UserPass Vault
  9038. authentication method</p>
  9039. </td>
  9040. </tr>
  9041. <tr>
  9042. <td>
  9043. <code>secretRef</code></br>
  9044. <em>
  9045. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9046. External Secrets meta/v1.SecretKeySelector
  9047. </a>
  9048. </em>
  9049. </td>
  9050. <td>
  9051. <p>SecretRef to a key in a Secret resource containing password for the
  9052. user used to authenticate with Vault using the UserPass authentication
  9053. method</p>
  9054. </td>
  9055. </tr>
  9056. </tbody>
  9057. </table>
  9058. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  9059. </h3>
  9060. <p>
  9061. (<em>Appears on:</em>
  9062. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9063. </p>
  9064. <p>
  9065. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  9066. </p>
  9067. <table>
  9068. <thead>
  9069. <tr>
  9070. <th>Field</th>
  9071. <th>Description</th>
  9072. </tr>
  9073. </thead>
  9074. <tbody>
  9075. <tr>
  9076. <td>
  9077. <code>type</code></br>
  9078. <em>
  9079. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  9080. WebhookCAProviderType
  9081. </a>
  9082. </em>
  9083. </td>
  9084. <td>
  9085. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  9086. </td>
  9087. </tr>
  9088. <tr>
  9089. <td>
  9090. <code>name</code></br>
  9091. <em>
  9092. string
  9093. </em>
  9094. </td>
  9095. <td>
  9096. <p>The name of the object located at the provider type.</p>
  9097. </td>
  9098. </tr>
  9099. <tr>
  9100. <td>
  9101. <code>key</code></br>
  9102. <em>
  9103. string
  9104. </em>
  9105. </td>
  9106. <td>
  9107. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  9108. </td>
  9109. </tr>
  9110. <tr>
  9111. <td>
  9112. <code>namespace</code></br>
  9113. <em>
  9114. string
  9115. </em>
  9116. </td>
  9117. <td>
  9118. <em>(Optional)</em>
  9119. <p>The namespace the Provider type is in.</p>
  9120. </td>
  9121. </tr>
  9122. </tbody>
  9123. </table>
  9124. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  9125. (<code>string</code> alias)</p></h3>
  9126. <p>
  9127. (<em>Appears on:</em>
  9128. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  9129. </p>
  9130. <p>
  9131. </p>
  9132. <table>
  9133. <thead>
  9134. <tr>
  9135. <th>Value</th>
  9136. <th>Description</th>
  9137. </tr>
  9138. </thead>
  9139. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  9140. <td></td>
  9141. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  9142. <td></td>
  9143. </tr></tbody>
  9144. </table>
  9145. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  9146. </h3>
  9147. <p>
  9148. (<em>Appears on:</em>
  9149. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9150. </p>
  9151. <p>
  9152. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  9153. </p>
  9154. <table>
  9155. <thead>
  9156. <tr>
  9157. <th>Field</th>
  9158. <th>Description</th>
  9159. </tr>
  9160. </thead>
  9161. <tbody>
  9162. <tr>
  9163. <td>
  9164. <code>method</code></br>
  9165. <em>
  9166. string
  9167. </em>
  9168. </td>
  9169. <td>
  9170. <p>Webhook Method</p>
  9171. </td>
  9172. </tr>
  9173. <tr>
  9174. <td>
  9175. <code>url</code></br>
  9176. <em>
  9177. string
  9178. </em>
  9179. </td>
  9180. <td>
  9181. <p>Webhook url to call</p>
  9182. </td>
  9183. </tr>
  9184. <tr>
  9185. <td>
  9186. <code>headers</code></br>
  9187. <em>
  9188. map[string]string
  9189. </em>
  9190. </td>
  9191. <td>
  9192. <em>(Optional)</em>
  9193. <p>Headers</p>
  9194. </td>
  9195. </tr>
  9196. <tr>
  9197. <td>
  9198. <code>body</code></br>
  9199. <em>
  9200. string
  9201. </em>
  9202. </td>
  9203. <td>
  9204. <em>(Optional)</em>
  9205. <p>Body</p>
  9206. </td>
  9207. </tr>
  9208. <tr>
  9209. <td>
  9210. <code>timeout</code></br>
  9211. <em>
  9212. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  9213. Kubernetes meta/v1.Duration
  9214. </a>
  9215. </em>
  9216. </td>
  9217. <td>
  9218. <em>(Optional)</em>
  9219. <p>Timeout</p>
  9220. </td>
  9221. </tr>
  9222. <tr>
  9223. <td>
  9224. <code>result</code></br>
  9225. <em>
  9226. <a href="#external-secrets.io/v1beta1.WebhookResult">
  9227. WebhookResult
  9228. </a>
  9229. </em>
  9230. </td>
  9231. <td>
  9232. <p>Result formatting</p>
  9233. </td>
  9234. </tr>
  9235. <tr>
  9236. <td>
  9237. <code>secrets</code></br>
  9238. <em>
  9239. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  9240. []WebhookSecret
  9241. </a>
  9242. </em>
  9243. </td>
  9244. <td>
  9245. <em>(Optional)</em>
  9246. <p>Secrets to fill in templates
  9247. These secrets will be passed to the templating function as key value pairs under the given name</p>
  9248. </td>
  9249. </tr>
  9250. <tr>
  9251. <td>
  9252. <code>caBundle</code></br>
  9253. <em>
  9254. []byte
  9255. </em>
  9256. </td>
  9257. <td>
  9258. <em>(Optional)</em>
  9259. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  9260. if the Server URL is using HTTPS protocol. This parameter is ignored for
  9261. plain HTTP protocol connection. If not set the system root certificates
  9262. are used to validate the TLS connection.</p>
  9263. </td>
  9264. </tr>
  9265. <tr>
  9266. <td>
  9267. <code>caProvider</code></br>
  9268. <em>
  9269. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  9270. WebhookCAProvider
  9271. </a>
  9272. </em>
  9273. </td>
  9274. <td>
  9275. <em>(Optional)</em>
  9276. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  9277. </td>
  9278. </tr>
  9279. </tbody>
  9280. </table>
  9281. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  9282. </h3>
  9283. <p>
  9284. (<em>Appears on:</em>
  9285. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9286. </p>
  9287. <p>
  9288. </p>
  9289. <table>
  9290. <thead>
  9291. <tr>
  9292. <th>Field</th>
  9293. <th>Description</th>
  9294. </tr>
  9295. </thead>
  9296. <tbody>
  9297. <tr>
  9298. <td>
  9299. <code>jsonPath</code></br>
  9300. <em>
  9301. string
  9302. </em>
  9303. </td>
  9304. <td>
  9305. <em>(Optional)</em>
  9306. <p>Json path of return value</p>
  9307. </td>
  9308. </tr>
  9309. </tbody>
  9310. </table>
  9311. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  9312. </h3>
  9313. <p>
  9314. (<em>Appears on:</em>
  9315. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  9316. </p>
  9317. <p>
  9318. </p>
  9319. <table>
  9320. <thead>
  9321. <tr>
  9322. <th>Field</th>
  9323. <th>Description</th>
  9324. </tr>
  9325. </thead>
  9326. <tbody>
  9327. <tr>
  9328. <td>
  9329. <code>name</code></br>
  9330. <em>
  9331. string
  9332. </em>
  9333. </td>
  9334. <td>
  9335. <p>Name of this secret in templates</p>
  9336. </td>
  9337. </tr>
  9338. <tr>
  9339. <td>
  9340. <code>secretRef</code></br>
  9341. <em>
  9342. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9343. External Secrets meta/v1.SecretKeySelector
  9344. </a>
  9345. </em>
  9346. </td>
  9347. <td>
  9348. <p>Secret ref to fill in credentials</p>
  9349. </td>
  9350. </tr>
  9351. </tbody>
  9352. </table>
  9353. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  9354. </h3>
  9355. <p>
  9356. (<em>Appears on:</em>
  9357. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9358. </p>
  9359. <p>
  9360. </p>
  9361. <table>
  9362. <thead>
  9363. <tr>
  9364. <th>Field</th>
  9365. <th>Description</th>
  9366. </tr>
  9367. </thead>
  9368. <tbody>
  9369. <tr>
  9370. <td>
  9371. <code>authorizedKeySecretRef</code></br>
  9372. <em>
  9373. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9374. External Secrets meta/v1.SecretKeySelector
  9375. </a>
  9376. </em>
  9377. </td>
  9378. <td>
  9379. <em>(Optional)</em>
  9380. <p>The authorized key used for authentication</p>
  9381. </td>
  9382. </tr>
  9383. </tbody>
  9384. </table>
  9385. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  9386. </h3>
  9387. <p>
  9388. (<em>Appears on:</em>
  9389. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  9390. </p>
  9391. <p>
  9392. </p>
  9393. <table>
  9394. <thead>
  9395. <tr>
  9396. <th>Field</th>
  9397. <th>Description</th>
  9398. </tr>
  9399. </thead>
  9400. <tbody>
  9401. <tr>
  9402. <td>
  9403. <code>certSecretRef</code></br>
  9404. <em>
  9405. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9406. External Secrets meta/v1.SecretKeySelector
  9407. </a>
  9408. </em>
  9409. </td>
  9410. <td>
  9411. </td>
  9412. </tr>
  9413. </tbody>
  9414. </table>
  9415. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  9416. </h3>
  9417. <p>
  9418. (<em>Appears on:</em>
  9419. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9420. </p>
  9421. <p>
  9422. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  9423. </p>
  9424. <table>
  9425. <thead>
  9426. <tr>
  9427. <th>Field</th>
  9428. <th>Description</th>
  9429. </tr>
  9430. </thead>
  9431. <tbody>
  9432. <tr>
  9433. <td>
  9434. <code>apiEndpoint</code></br>
  9435. <em>
  9436. string
  9437. </em>
  9438. </td>
  9439. <td>
  9440. <em>(Optional)</em>
  9441. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9442. </td>
  9443. </tr>
  9444. <tr>
  9445. <td>
  9446. <code>auth</code></br>
  9447. <em>
  9448. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  9449. YandexCertificateManagerAuth
  9450. </a>
  9451. </em>
  9452. </td>
  9453. <td>
  9454. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  9455. </td>
  9456. </tr>
  9457. <tr>
  9458. <td>
  9459. <code>caProvider</code></br>
  9460. <em>
  9461. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  9462. YandexCertificateManagerCAProvider
  9463. </a>
  9464. </em>
  9465. </td>
  9466. <td>
  9467. <em>(Optional)</em>
  9468. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9469. </td>
  9470. </tr>
  9471. </tbody>
  9472. </table>
  9473. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  9474. </h3>
  9475. <p>
  9476. (<em>Appears on:</em>
  9477. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9478. </p>
  9479. <p>
  9480. </p>
  9481. <table>
  9482. <thead>
  9483. <tr>
  9484. <th>Field</th>
  9485. <th>Description</th>
  9486. </tr>
  9487. </thead>
  9488. <tbody>
  9489. <tr>
  9490. <td>
  9491. <code>authorizedKeySecretRef</code></br>
  9492. <em>
  9493. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9494. External Secrets meta/v1.SecretKeySelector
  9495. </a>
  9496. </em>
  9497. </td>
  9498. <td>
  9499. <em>(Optional)</em>
  9500. <p>The authorized key used for authentication</p>
  9501. </td>
  9502. </tr>
  9503. </tbody>
  9504. </table>
  9505. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  9506. </h3>
  9507. <p>
  9508. (<em>Appears on:</em>
  9509. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  9510. </p>
  9511. <p>
  9512. </p>
  9513. <table>
  9514. <thead>
  9515. <tr>
  9516. <th>Field</th>
  9517. <th>Description</th>
  9518. </tr>
  9519. </thead>
  9520. <tbody>
  9521. <tr>
  9522. <td>
  9523. <code>certSecretRef</code></br>
  9524. <em>
  9525. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9526. External Secrets meta/v1.SecretKeySelector
  9527. </a>
  9528. </em>
  9529. </td>
  9530. <td>
  9531. </td>
  9532. </tr>
  9533. </tbody>
  9534. </table>
  9535. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  9536. </h3>
  9537. <p>
  9538. (<em>Appears on:</em>
  9539. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  9540. </p>
  9541. <p>
  9542. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  9543. </p>
  9544. <table>
  9545. <thead>
  9546. <tr>
  9547. <th>Field</th>
  9548. <th>Description</th>
  9549. </tr>
  9550. </thead>
  9551. <tbody>
  9552. <tr>
  9553. <td>
  9554. <code>apiEndpoint</code></br>
  9555. <em>
  9556. string
  9557. </em>
  9558. </td>
  9559. <td>
  9560. <em>(Optional)</em>
  9561. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  9562. </td>
  9563. </tr>
  9564. <tr>
  9565. <td>
  9566. <code>auth</code></br>
  9567. <em>
  9568. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  9569. YandexLockboxAuth
  9570. </a>
  9571. </em>
  9572. </td>
  9573. <td>
  9574. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  9575. </td>
  9576. </tr>
  9577. <tr>
  9578. <td>
  9579. <code>caProvider</code></br>
  9580. <em>
  9581. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  9582. YandexLockboxCAProvider
  9583. </a>
  9584. </em>
  9585. </td>
  9586. <td>
  9587. <em>(Optional)</em>
  9588. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  9589. </td>
  9590. </tr>
  9591. </tbody>
  9592. </table>
  9593. <hr/>
  9594. <p><em>
  9595. Generated with <code>gen-crd-api-reference-docs</code>.
  9596. </em></p>
  9597. </article>
  9598. </div>
  9599. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  9600. </div>
  9601. </main>
  9602. <footer class="md-footer">
  9603. <div class="md-footer-meta md-typeset">
  9604. <div class="md-footer-meta__inner md-grid">
  9605. <div class="md-copyright">
  9606. <div class="md-copyright__highlight">
  9607. &copy; 2024 The external-secrets Authors.<br/>
  9608. &copy; 2024 The Linux Foundation. All rights reserved.<br/><br/>
  9609. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  9610. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  9611. </div>
  9612. Made with
  9613. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  9614. Material for MkDocs
  9615. </a>
  9616. </div>
  9617. </div>
  9618. </div>
  9619. </footer>
  9620. </div>
  9621. <div class="md-dialog" data-md-component="dialog">
  9622. <div class="md-dialog__inner md-typeset"></div>
  9623. </div>
  9624. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.b8dbb3d2.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  9625. <script src="../../assets/javascripts/bundle.a7c05c9e.min.js"></script>
  9626. </body>
  9627. </html>